]> git.proxmox.com Git - rustc.git/blob - src/test/ui/nll/maybe-initialized-drop.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / 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`.