rust/tests/ui/nll/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 19:19:43 +00:00
error: lifetime may not live long enough
2022-04-01 17:13:25 +00:00
--> $DIR/issue-75777.rs:11:5
2020-09-02 19:19:43 +00: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