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

16 lines
425 B
Plaintext
Raw Normal View History

error[E0597]: `y` does not live long enough
--> $DIR/capture-ref-in-struct.rs:31:16
|
2018-02-22 18:42:32 -06:00
LL | y: &y,
| ^^ borrowed value does not live long enough
...
2018-02-22 18:42:32 -06:00
LL | }
| - borrowed value only lives until here
2018-02-24 17:01:39 -06:00
LL |
2018-02-22 18:42:32 -06:00
LL | deref(p);
| - borrow later used here
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"