2019-01-27 11:03:21 +00:00
|
|
|
error: lifetime may not live long enough
|
|
|
|
--> $DIR/issue-10291.rs:3: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| {
|
2019-01-27 11:03:21 +00:00
|
|
|
LL | x
|
|
|
|
| ^ returning this value requires that `'x` must outlive `'static`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|