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