rust/src/test/ui/span/destructor-restrictions.stderr
2018-12-25 21:08:33 -07:00

14 lines
452 B
Plaintext

error[E0597]: `*a` does not live long enough
--> $DIR/destructor-restrictions.rs:8:10
|
LL | *a.borrow() + 1
| ^ borrowed value does not live long enough
LL | }; //~^ ERROR `*a` does not live long enough
| -- borrowed value needs to live until here
| |
| `*a` dropped here while still borrowed
error: aborting due to previous error
For more information about this error, try `rustc --explain E0597`.