rust/src/test/ui/nll/issue-52534.stderr

14 lines
439 B
Plaintext
Raw Normal View History

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 | }
| - ...but `x` is only valid for the duration of the `bar` function, so it is dropped here while still borrowed
error: aborting due to previous error
For more information about this error, try `rustc --explain E0597`.