rust/tests/ui/regions/regions-nested-fns-2.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
578 B
Plaintext
Raw Normal View History

error[E0597]: `y` does not live long enough
--> $DIR/regions-nested-fns-2.rs:7:25
|
2018-02-22 18:42:32 -06:00
LL | |z| {
| --- value captured here
2018-02-22 18:42:32 -06:00
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 previous error
For more information about this error, try `rustc --explain E0597`.