2017-08-09 18:37:56 -05:00
|
|
|
error[E0597]: `a` does not live long enough
|
2018-10-04 13:49:38 -05:00
|
|
|
--> $DIR/borrowing.rs:9:33
|
2017-08-09 18:37:56 -05:00
|
|
|
|
|
2018-10-04 13:49:38 -05:00
|
|
|
LL | Pin::new(&mut || yield &a).resume()
|
|
|
|
| -- ^ borrowed value does not live long enough
|
|
|
|
| |
|
|
|
|
| capture occurs here
|
2018-02-24 17:01:39 -06:00
|
|
|
LL | //~^ 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
|
2018-10-04 13:49:38 -05:00
|
|
|
--> $DIR/borrowing.rs:16:20
|
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
|
|
|
| -- 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-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0597`.
|