rust/tests/ui/issues/issue-10291.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-04-01 17:13:25 +00:00
--> $DIR/issue-10291.rs:3:9
|
LL | fn test<'x>(x: &'x isize) {
| -- lifetime `'x` defined here
2019-05-28 18:46:13 +00: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