2017-12-11 11:29:31 -06:00
|
|
|
error[E0597]: `y` does not live long enough
|
2018-03-05 16:29:05 -06:00
|
|
|
--> $DIR/capture-ref-in-struct.rs:31:16
|
2017-11-22 16:39:46 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | y: &y,
|
2017-12-14 11:57:34 -06:00
|
|
|
| ^^ borrowed value does not live long enough
|
2017-11-22 16:39:46 -06:00
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | }
|
2018-01-13 17:28:00 -06:00
|
|
|
| - 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);
|
2017-12-12 14:29:37 -06:00
|
|
|
| - borrow later used here
|
2017-11-22 16:39:46 -06:00
|
|
|
|
|
|
|
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"
|