summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-nested-fns-2.stderr
blob: 43c8d1272c7449c5ef76201f2deaf42888870259 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error[E0597]: `y` does not live long enough
  --> $DIR/regions-nested-fns-2.rs:7:25
   |
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 previous error

For more information about this error, try `rustc --explain E0597`.