rust/src/test/ui/nll/capture-ref-in-struct.stderr

18 lines
492 B
Plaintext
Raw Normal View History

error[E0597]: `y` does not live long enough
--> $DIR/capture-ref-in-struct.rs:33:16
|
33 | y: &y,
| ^^ borrowed value does not live long enough
...
38 | }
| - borrowed value only lives until here
39 |
40 | deref(p);
| - borrow later used here
|
= note: borrowed value must be valid for lifetime '_#5r...
error: aborting due to previous error
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0597"