blob: d9698ced3defb9cc10b6dc83f69151b9b007eba7 [file] [log] [blame] [edit]
fn ignore<T>(t: T) {}
fn nested<'x>(x: &'x isize) {
let y = 3;
let mut ay = &y;
//~^ ERROR `y` does not live long enough [E0597]
ignore::<Box<dyn for<'z> FnMut(&'z isize)>>(Box::new(|z| {
ay = x;
ay = &y;
//~^ ERROR `y` does not live long enough
ay = z;
//~^ ERROR borrowed data escapes outside of closure [E0521]
}));
ignore::< Box<dyn for<'z> FnMut(&'z isize) -> &'z isize>>(Box::new(|z| {
if false { return x; }
//~^ ERROR lifetime may not live long enough
if false { return ay; }
return z;
}));
}
fn main() {}