2016-10-26 11:10:39 -05:00
|
|
|
error: `*a` does not live long enough
|
|
|
|
--> $DIR/destructor-restrictions.rs:19:5
|
|
|
|
|
|
|
|
|
18 | *a.borrow() + 1 //~ ERROR `*a` does not live long enough
|
|
|
|
| - borrow occurs here
|
|
|
|
19 | };
|
|
|
|
| ^- borrowed value needs to live until here
|
|
|
|
| |
|
|
|
|
| `*a` dropped here while still borrowed
|
|
|
|
|
2017-05-22 06:46:05 -05:00
|
|
|
error: aborting due to previous error(s)
|
2016-10-26 11:10:39 -05:00
|
|
|
|