2021-02-02 03:13:19 +11:00
|
|
|
error[E0506]: cannot assign to `c.container_field` because it is borrowed
|
|
|
|
--> $DIR/issue-81365-7.rs:20:5
|
|
|
|
|
|
|
|
|
LL | let first = &c.target_field;
|
2023-01-15 03:06:44 +00:00
|
|
|
| - `c.container_field` is borrowed here
|
2021-02-02 03:13:19 +11:00
|
|
|
LL | c.container_field = true;
|
2023-01-15 03:06:44 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ `c.container_field` is assigned to here but it was already borrowed
|
2021-02-02 03:13:19 +11:00
|
|
|
LL | first;
|
|
|
|
| ----- borrow later used here
|
|
|
|
|
|
|
|
|
= note: borrow occurs due to deref coercion to `DerefTarget`
|
2021-02-19 13:30:49 +11:00
|
|
|
note: deref defined here
|
|
|
|
--> $DIR/issue-81365-7.rs:12:5
|
|
|
|
|
|
|
|
|
LL | type Target = DerefTarget;
|
2022-02-13 16:27:59 +01:00
|
|
|
| ^^^^^^^^^^^
|
2021-02-02 03:13:19 +11:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0506`.
|