]> git.lizzy.rs Git - rust.git/blob - tests/ui/nll/maybe-initialized-drop.stderr
Rollup merge of #106397 - compiler-errors:new-solver-impl-wc, r=lcnr
[rust.git] / tests / ui / nll / maybe-initialized-drop.stderr
1 error[E0506]: cannot assign to `x` because it is borrowed
2   --> $DIR/maybe-initialized-drop.rs:14:5
3    |
4 LL |     let wrap = Wrap { p: &mut x };
5    |                          ------ borrow of `x` occurs here
6 LL |     x = 1;
7    |     ^^^^^ assignment to borrowed `x` occurs here
8 LL | }
9    | - borrow might be used here, when `wrap` is dropped and runs the `Drop` code for type `Wrap`
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0506`.