2017-12-10 14:36:42 -06:00
|
|
|
error[E0597]: `z` does not live long enough (Ast)
|
2017-12-13 19:27:23 -06:00
|
|
|
--> $DIR/issue-46471-1.rs:16:14
|
2017-12-10 14:36:42 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | &mut z
|
2017-12-13 19:27:23 -06:00
|
|
|
| ^ borrowed value does not live long enough
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | };
|
2017-12-13 19:27:23 -06:00
|
|
|
| - `z` dropped here while still borrowed
|
2017-12-10 14:36:42 -06:00
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | }
|
2017-12-10 14:36:42 -06:00
|
|
|
| - borrowed value needs to live until here
|
|
|
|
|
|
|
|
error[E0597]: `z` does not live long enough (Mir)
|
2017-12-14 11:57:34 -06:00
|
|
|
--> $DIR/issue-46471-1.rs:16:9
|
2017-12-10 14:36:42 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | &mut z
|
2017-12-14 11:57:34 -06:00
|
|
|
| ^^^^^^ borrowed value does not live long enough
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | };
|
2018-01-13 17:28:00 -06:00
|
|
|
| - `z` dropped here while still borrowed
|
2017-12-10 14:36:42 -06:00
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | }
|
2017-12-10 14:36:42 -06:00
|
|
|
| - borrowed value needs to live until here
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0597"
|