2017-05-27 12:58:52 -05:00
|
|
|
error[E0597]: `b` does not live long enough
|
2016-10-26 11:10:39 -05:00
|
|
|
--> $DIR/mut-ptr-cant-outlive-ref.rs:19:5
|
|
|
|
|
|
2017-11-20 06:13:27 -06:00
|
|
|
18 | p = &*b;
|
2016-10-26 11:10:39 -05:00
|
|
|
| - borrow occurs here
|
2017-11-20 06:13:27 -06:00
|
|
|
19 | } //~ ERROR `b` does not live long enough
|
2016-10-26 11:10:39 -05:00
|
|
|
| ^ `b` dropped here while still borrowed
|
|
|
|
20 | }
|
|
|
|
| - 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
|
|
|
|