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