mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
25 lines
618 B
Rust
25 lines
618 B
Rust
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() {}
|