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