]> git.proxmox.com Git - rustc.git/blob - tests/ui/borrowck/issue-81365-5.stderr
New upstream version 1.76.0+dfsg1
[rustc.git] / tests / ui / borrowck / issue-81365-5.stderr
1 error[E0506]: cannot assign to `self.container_field` because it is borrowed
2 --> $DIR/issue-81365-5.rs:28:9
3 |
4 LL | let first = self.get();
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 = note: borrow occurs due to deref coercion to `DerefTarget`
12 note: deref defined here
13 --> $DIR/issue-81365-5.rs:19:5
14 |
15 LL | type Target = DerefTarget;
16 | ^^^^^^^^^^^
17
18 error: aborting due to 1 previous error
19
20 For more information about this error, try `rustc --explain E0506`.