rust/src/test/ui/generator/yield-while-local-borrowed.stderr
Vadim Petrochenkov fa2d9fc4b9 Update UI tests
2018-02-26 20:24:02 +03:00

40 lines
1.1 KiB
Plaintext

error[E0626]: borrow may still be in use when generator yields (Ast)
--> $DIR/yield-while-local-borrowed.rs:24:22
|
LL | let a = &mut 3;
| ^
...
LL | yield();
| ------- possible yield occurs here
error[E0626]: borrow may still be in use when generator yields (Ast)
--> $DIR/yield-while-local-borrowed.rs:52:22
|
LL | let b = &a;
| ^
...
LL | yield();
| ------- possible yield occurs here
error[E0626]: borrow may still be in use when generator yields (Mir)
--> $DIR/yield-while-local-borrowed.rs:24:17
|
LL | let a = &mut 3;
| ^^^^^^
...
LL | yield();
| ------- possible yield occurs here
error[E0626]: borrow may still be in use when generator yields (Mir)
--> $DIR/yield-while-local-borrowed.rs:52:21
|
LL | let b = &a;
| ^^
...
LL | yield();
| ------- possible yield occurs here
error: aborting due to 4 previous errors
If you want more information on this error, try using "rustc --explain E0626"