rust/src/test/ui/span/destructor-restrictions.stderr

13 lines
361 B
Plaintext
Raw Normal View History

2017-05-27 12:58:52 -05:00
error[E0597]: `*a` does not live long enough
--> $DIR/destructor-restrictions.rs:19:5
|
2017-11-20 06:13:27 -06:00
18 | *a.borrow() + 1
| - borrow occurs here
2017-11-20 06:13:27 -06:00
19 | }; //~ 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