2020-09-02 14:19:43 -05:00
|
|
|
// Regression test for #75777.
|
|
|
|
// Checks that a boxed future can be properly constructed.
|
|
|
|
|
|
|
|
use std::future::{self, Future};
|
|
|
|
use std::pin::Pin;
|
|
|
|
|
|
|
|
type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + 'a + Send>>;
|
|
|
|
|
|
|
|
fn inject<'a, Env: 'a, A: 'a + Send>(v: A) -> Box<dyn FnOnce(&'a Env) -> BoxFuture<'a, A>> {
|
|
|
|
let fut: BoxFuture<'a, A> = Box::pin(future::ready(v));
|
|
|
|
Box::new(move |_| fut)
|
2022-04-01 12:13:25 -05:00
|
|
|
//~^ ERROR: lifetime may not live long enough
|
2020-09-02 14:19:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|