rust/tests/ui/generator/yield-while-iterating.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
907 B
Plaintext
Raw Normal View History

2017-07-29 09:05:50 -07:00
error[E0626]: borrow may still be in use when generator yields
--> $DIR/yield-while-iterating.rs:13:18
|
2019-03-09 15:03:44 +03:00
LL | for p in &x {
| ^^
2018-02-23 03:42:32 +03:00
LL | yield();
| ------- possible yield occurs here
error[E0502]: cannot borrow `x` as immutable because it is also borrowed as mutable
2018-10-04 20:49:38 +02:00
--> $DIR/yield-while-iterating.rs:58:20
|
2018-02-23 03:42:32 +03:00
LL | let mut b = || {
| -- mutable borrow occurs here
2018-02-23 03:42:32 +03:00
LL | for p in &mut x {
| - first borrow occurs due to use of `x` in generator
...
2019-03-09 15:03:44 +03:00
LL | println!("{}", x[0]);
| ^ immutable borrow occurs here
LL | Pin::new(&mut b).resume(());
| ------ mutable borrow later used here
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0502, E0626.
2018-03-03 15:59:40 +01:00
For more information about an error, try `rustc --explain E0502`.