rust/src/test/ui/span/mut-ptr-cant-outlive-ref.stderr

13 lines
349 B
Plaintext
Raw Normal View History

2017-05-27 12:58:52 -05:00
error[E0597]: `b` does not live long enough
--> $DIR/mut-ptr-cant-outlive-ref.rs:19:5
|
2017-11-20 06:13:27 -06:00
18 | p = &*b;
| - borrow occurs here
2017-11-20 06:13:27 -06:00
19 | } //~ ERROR `b` does not live long enough
| ^ `b` dropped here while still borrowed
20 | }
| - borrowed value needs to live until here
error: aborting due to previous error