2023-10-19 16:46:28 -05:00
|
|
|
error[E0626]: borrow may still be in use when coroutine yields
|
2019-04-07 10:07:36 -05:00
|
|
|
--> $DIR/generator-with-nll.rs:7:17
|
2018-01-11 12:50:40 -06:00
|
|
|
|
|
2018-07-26 06:17:33 -05:00
|
|
|
LL | let b = &mut true;
|
2018-01-29 01:29:58 -06:00
|
|
|
| ^^^^^^^^^
|
2019-03-09 06:03:44 -06:00
|
|
|
LL |
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | yield ();
|
2018-01-29 01:29:58 -06:00
|
|
|
| -------- possible yield occurs here
|
|
|
|
|
2018-07-26 06:17:33 -05:00
|
|
|
error: aborting due to previous error
|
2018-01-11 12:50:40 -06:00
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0626`.
|