2019-04-22 02:40:08 -05:00
|
|
|
error[E0521]: borrowed data escapes outside of generator
|
|
|
|
--> $DIR/ref-escapes-but-not-over-yield.rs:11:9
|
2017-07-15 05:52:49 -05:00
|
|
|
|
|
2019-04-22 02:40:08 -05:00
|
|
|
LL | let mut a = &3;
|
|
|
|
| ----- `a` is declared here, outside of the generator body
|
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | a = &b;
|
2019-04-22 02:40:08 -05:00
|
|
|
| ^^^^--
|
|
|
|
| | |
|
|
|
|
| | borrow is only valid in the generator body
|
|
|
|
| reference to `b` escapes the generator body here
|
2017-07-15 05:52:49 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|