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;
|
2020-01-21 19:41:44 -06:00
|
|
|
| ----- `a` declared here, outside of the generator body
|
2019-04-22 02:40:08 -05:00
|
|
|
...
|
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
|
|
|
|
|
2021-02-01 11:23:12 -06:00
|
|
|
For more information about this error, try `rustc --explain E0521`.
|