summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-75777.rs
blob: a1e438bc617803de855295ed1ef5e1d6e2b7b372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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)
    //~^ ERROR: lifetime may not live long enough
}

fn main() {}