]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/reference-carried-through-struct-field.stderr
Rollup merge of #105216 - GuillaumeGomez:rm-unused-gui-test, r=notriddle
[rust.git] / src / test / ui / nll / reference-carried-through-struct-field.stderr
1 error[E0503]: cannot use `x` because it was mutably borrowed
2   --> $DIR/reference-carried-through-struct-field.rs:6:5
3    |
4 LL |     let wrapper = Wrap { w: &mut x };
5    |                             ------ borrow of `x` occurs here
6 LL |     x += 1;
7    |     ^^^^^^ use of borrowed `x`
8 LL |     *wrapper.w += 1;
9    |     --------------- borrow later used here
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0503`.