]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/issue-81365-7.stderr
Rollup merge of #106570 - Xaeroxe:div-duration-tests, r=JohnTitor
[rust.git] / tests / ui / borrowck / issue-81365-7.stderr
1 error[E0506]: cannot assign to `c.container_field` because it is borrowed
2   --> $DIR/issue-81365-7.rs:20:5
3    |
4 LL |     let first = &c.target_field;
5    |                  - borrow of `c.container_field` occurs here
6 LL |     c.container_field = true;
7    |     ^^^^^^^^^^^^^^^^^^^^^^^^ assignment to borrowed `c.container_field` occurs here
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-7.rs:12:5
14    |
15 LL |     type Target = DerefTarget;
16    |     ^^^^^^^^^^^
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0506`.