]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/issue-81365-9.stderr
implement Hash for proc_macro::LineColumn
[rust.git] / tests / ui / borrowck / issue-81365-9.stderr
1 error[E0506]: cannot assign to `self.container_field` because it is borrowed
2   --> $DIR/issue-81365-9.rs:21:9
3    |
4 LL |         let first = &Deref::deref(self).target_field;
5    |                                   ---- borrow of `self.container_field` occurs here
6 LL |         self.container_field = true;
7    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^ assignment to borrowed `self.container_field` occurs here
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`.