2018-08-08 07:28:26 -05:00
|
|
|
error[E0506]: cannot assign to `_a` because it is borrowed
|
2019-04-22 02:40:08 -05:00
|
|
|
--> $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
|
|
|
...
|
2019-03-17 04:52:07 -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
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
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`.
|