rust/src/test/ui/span/regionck-unboxed-closure-lifetimes.stderr
2018-12-25 21:08:33 -07:00

16 lines
449 B
Plaintext

error[E0597]: `c` does not live long enough
--> $DIR/regionck-unboxed-closure-lifetimes.rs:8:22
|
LL | let c_ref = &c;
| ^ borrowed value does not live long enough
...
LL | }
| - `c` dropped here while still borrowed
LL | f.use_mut();
LL | }
| - borrowed value needs to live until here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0597`.