]> git.proxmox.com Git - rustc.git/blob - tests/ui/borrowck/issue-81365-11.stderr
bump version to 1.75.0+dfsg1-1~bpo12+pve1
[rustc.git] / tests / ui / borrowck / issue-81365-11.stderr
1 error[E0506]: cannot assign to `self.container_field` because it is borrowed
2 --> $DIR/issue-81365-11.rs:27:9
3 |
4 LL | let first = &mut self.target_field;
5 | ---- `self.container_field` is borrowed here
6 LL | self.container_field = true;
7 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ `self.container_field` is assigned to here but it was already borrowed
8 LL | first;
9 | ----- borrow later used here
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0506`.