Files
rust/src/test/ui/issues/issue-10291.nll.stderr

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

12 lines
364 B
Plaintext
Raw Normal View History

error: lifetime may not live long enough
2022-05-22 01:02:55 -04:00
--> $DIR/issue-10291.rs:7:9
|
LL | fn test<'x>(x: &'x isize) {
| -- lifetime `'x` defined here
2019-05-28 14:46:13 -04:00
LL | drop::<Box<dyn for<'z> FnMut(&'z isize) -> &'z isize>>(Box::new(|z| {
LL | x
| ^ returning this value requires that `'x` must outlive `'static`
error: aborting due to previous error