2018-09-14 08:44:45 -05:00
|
|
|
error[E0597]: `x` does not live long enough
|
2018-09-17 03:48:44 -05:00
|
|
|
--> $DIR/issue-52534.rs:22:14
|
2018-09-14 08:44:45 -05:00
|
|
|
|
|
|
|
|
LL | foo(|a| &x)
|
|
|
|
| - ^ `x` would have to be valid for `'0`
|
|
|
|
| |
|
|
|
|
| has type `&'0 u32`
|
|
|
|
LL | }
|
2018-09-14 16:13:24 -05:00
|
|
|
| - ...but `x` is only valid for the duration of the `bar` function, so it is dropped here while still borrowed
|
2018-09-14 08:44:45 -05:00
|
|
|
|
2018-09-17 03:48:44 -05:00
|
|
|
error[E0597]: `y` does not live long enough
|
|
|
|
--> $DIR/issue-52534.rs:27:26
|
|
|
|
|
|
|
|
|
LL | baz(|first, second| &y)
|
|
|
|
| - ^ `y` would have to be valid for `'0`
|
|
|
|
| |
|
|
|
|
| has type `&'0 u32`
|
|
|
|
LL | }
|
|
|
|
| - ...but `y` is only valid for the duration of the `foobar` function, so it is dropped here while still borrowed
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-09-14 08:44:45 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|