2017-05-27 12:58:52 -05:00
|
|
|
error[E0597]: `x` does not live long enough
|
2016-10-26 11:10:39 -05:00
|
|
|
--> $DIR/regions-escape-loop-via-variable.rs:22:5
|
|
|
|
|
|
|
|
|
21 | p = &x; //~ ERROR `x` does not live long enough
|
|
|
|
| - borrow occurs here
|
|
|
|
22 | }
|
|
|
|
| ^ `x` dropped here while still borrowed
|
|
|
|
23 | }
|
|
|
|
| - borrowed value needs to live until here
|
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to previous error
|
2016-10-26 11:10:39 -05:00
|
|
|
|