blob: 02359fe1213d8e9b0fde7c9a33c7f803827b1bb9 [file] [log] [blame] [edit]
error[E0597]: `y` does not live long enough
--> $DIR/regions-nested-fns-2.rs:7:25
|
LL | let y = 3;
| - binding `y` declared here
LL | ignore(
LL | |z| {
| --- value captured here
LL | if false { &y } else { z }
| -^
| ||
| |borrowed value does not live long enough
| returning this value requires that `y` is borrowed for `'static`
...
LL | }
| - `y` dropped here while still borrowed
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0597`.