rust/src/test/ui/issue-46471-1.stderr

26 lines
699 B
Plaintext
Raw Normal View History

error[E0597]: `z` does not live long enough (Ast)
2017-12-13 19:27:23 -06:00
--> $DIR/issue-46471-1.rs:16:14
|
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
...
2018-02-22 18:42:32 -06:00
LL | }
| - borrowed value needs to live until here
error[E0597]: `z` does not live long enough (Mir)
--> $DIR/issue-46471-1.rs:16:9
|
2018-02-22 18:42:32 -06:00
LL | &mut z
| ^^^^^^ borrowed value does not live long enough
2018-02-22 18:42:32 -06:00
LL | };
| - `z` dropped here while still borrowed
...
2018-02-22 18:42:32 -06:00
LL | }
| - 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"