]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-imm-ref-to-mut-rec-field-issue-3162-c.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / borrowck / borrowck-imm-ref-to-mut-rec-field-issue-3162-c.stderr
1 error[E0506]: cannot assign to `_a` because it is borrowed
2   --> $DIR/borrowck-imm-ref-to-mut-rec-field-issue-3162-c.rs:6:9
3    |
4 LL |     let b = &mut _a;
5    |             ------- borrow of `_a` occurs here
6 ...
7 LL |         _a = 4;
8    |         ^^^^^^ assignment to borrowed `_a` occurs here
9 ...
10 LL |     drop(b);
11    |          - borrow later used here
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0506`.