2017-05-27 19:58:52 +02:00
|
|
|
error[E0597]: `short` does not live long enough
|
2016-10-14 18:55:45 +03:00
|
|
|
--> $DIR/loan-extend.rs:21:1
|
|
|
|
|
|
|
|
|
19 | long = borrow(&mut short);
|
|
|
|
| ----- borrow occurs here
|
|
|
|
20 | //~^ NOTE borrow occurs here
|
|
|
|
21 | }
|
|
|
|
| ^ `short` dropped here while still borrowed
|
|
|
|
|
|
|
|
|
= note: values in a scope are dropped in the opposite order they are created
|
|
|
|
|
2017-07-02 13:49:30 +03:00
|
|
|
error: aborting due to previous error
|
2016-10-14 18:55:45 +03:00
|
|
|
|