2017-08-09 18:37:56 -05:00
|
|
|
error[E0597]: `a` does not live long enough
|
|
|
|
--> $DIR/borrowing.rs:18:20
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | (|| yield &a).resume()
|
2017-12-13 19:27:23 -06:00
|
|
|
| -- ^ borrowed value does not live long enough
|
2017-08-09 18:37:56 -05:00
|
|
|
| |
|
|
|
|
| capture occurs here
|
|
|
|
19 | //~^ ERROR: `a` does not live long enough
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | };
|
2017-08-09 18:37:56 -05:00
|
|
|
| - borrowed value only lives until here
|
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | }
|
2017-08-09 18:37:56 -05:00
|
|
|
| - borrowed value needs to live until here
|
|
|
|
|
|
|
|
error[E0597]: `a` does not live long enough
|
|
|
|
--> $DIR/borrowing.rs:25:20
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | || {
|
2017-08-09 18:37:56 -05:00
|
|
|
| -- capture occurs here
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | yield &a
|
2017-12-13 19:27:23 -06:00
|
|
|
| ^ borrowed value does not live long enough
|
2017-08-09 18:37:56 -05:00
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | };
|
2017-08-09 18:37:56 -05:00
|
|
|
| - borrowed value only lives until here
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | }
|
2017-08-09 18:37:56 -05:00
|
|
|
| - borrowed value needs to live until here
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0597"
|