2019-04-22 08:40:08 +01:00
|
|
|
error[E0521]: borrowed data escapes outside of generator
|
|
|
|
--> $DIR/ref-escapes-but-not-over-yield.rs:11:9
|
2017-07-15 06:52:49 -04:00
|
|
|
|
|
2019-04-22 08:40:08 +01:00
|
|
|
LL | let mut a = &3;
|
2020-01-22 01:41:44 +00:00
|
|
|
| ----- `a` declared here, outside of the generator body
|
2019-04-22 08:40:08 +01:00
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | a = &b;
|
2019-04-22 08:40:08 +01:00
|
|
|
| ^^^^--
|
|
|
|
| | |
|
|
|
|
| | borrow is only valid in the generator body
|
|
|
|
| reference to `b` escapes the generator body here
|
2017-07-15 06:52:49 -04:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2021-02-01 18:23:12 +01:00
|
|
|
For more information about this error, try `rustc --explain E0521`.
|