]> git.proxmox.com Git - rustc.git/blame - src/test/ui/borrowck/issue-81365-1.stderr
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / src / test / ui / borrowck / issue-81365-1.stderr
CommitLineData
6a06907d
XL
1error[E0506]: cannot assign to `self.container_field` because it is borrowed
2 --> $DIR/issue-81365-1.rs:21:9
3 |
4LL | let first = &self.target_field;
5 | ---- borrow of `self.container_field` occurs here
6LL | self.container_field = true;
7 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ assignment to borrowed `self.container_field` occurs here
8LL | first;
9 | ----- borrow later used here
10 |
11 = note: borrow occurs due to deref coercion to `DerefTarget`
12note: deref defined here
13 --> $DIR/issue-81365-1.rs:12:5
14 |
15LL | type Target = DerefTarget;
16 | ^^^^^^^^^^^^^^^^^^^^^^^^^^
17
18error: aborting due to previous error
19
20For more information about this error, try `rustc --explain E0506`.