blob: c45325f8c1e6056975960912172fad10e79f5492 [file] [log] [blame]
error[E0597]: `y` does not live long enough
--> $DIR/regions-nested-fns-2.rs:18:25
|
LL | |z| {
| --- value captured here
LL | //~^ ERROR E0373
LL | if false { &y } else { z }
| -^
| ||
| |borrowed value does not live long enough
| returning this value requires that `y` is borrowed for `'static`
LL | });
LL | }
| - `y` dropped here while still borrowed
error: aborting due to previous error
For more information about this error, try `rustc --explain E0597`.