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