]> git.proxmox.com Git - rustc.git/blob - src/test/ui/span/mut-ptr-cant-outlive-ref.stderr
New upstream version 1.19.0+dfsg1
[rustc.git] / src / test / ui / span / mut-ptr-cant-outlive-ref.stderr
1 error[E0597]: `b` does not live long enough
2 --> $DIR/mut-ptr-cant-outlive-ref.rs:19:5
3 |
4 18 | p = &*b; //~ ERROR `b` does not live long enough
5 | - borrow occurs here
6 19 | }
7 | ^ `b` dropped here while still borrowed
8 20 | }
9 | - borrowed value needs to live until here
10
11 error: aborting due to previous error(s)
12