2018-09-14 08:44:45 -05:00
|
|
|
error[E0597]: `x` does not live long enough
|
|
|
|
--> $DIR/issue-52534.rs:19:14
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|