rust/tests/ui/borrowck/borrowck-imm-ref-to-mut-rec-field-issue-3162-c.stderr

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

16 lines
471 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0506]: cannot assign to `_a` because it is borrowed
--> $DIR/borrowck-imm-ref-to-mut-rec-field-issue-3162-c.rs:6:9
2018-08-08 07:28:26 -05:00
|
LL | let b = &mut _a;
2023-01-14 21:06:44 -06:00
| ------- `_a` is borrowed here
2018-08-08 07:28:26 -05:00
...
LL | _a = 4;
2023-01-14 21:06:44 -06:00
| ^^^^^^ `_a` is assigned to here but it was already borrowed
2018-08-08 07:28:26 -05:00
...
LL | drop(b);
| - borrow later used here
error: aborting due to 1 previous error
2018-08-08 07:28:26 -05:00
For more information about this error, try `rustc --explain E0506`.