rust/tests/ui/issues/issue-75777.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
452 B
Plaintext
Raw Normal View History

2020-09-02 14:19:43 -05:00
error: lifetime may not live long enough
2022-04-01 12:13:25 -05:00
--> $DIR/issue-75777.rs:11:5
2020-09-02 14:19:43 -05:00
|
LL | fn inject<'a, Env: 'a, A: 'a + Send>(v: A) -> Box<dyn FnOnce(&'a Env) -> BoxFuture<'a, A>> {
| -- lifetime `'a` defined here
LL | let fut: BoxFuture<'a, A> = Box::pin(future::ready(v));
LL | Box::new(move |_| fut)
| ^^^^^^^^^^^^^^^^^^^^^^ returning this value requires that `'a` must outlive `'static`
error: aborting due to previous error