]> git.proxmox.com Git - rustc.git/blob - tests/ui/nll/maybe-initialized-drop.stderr
New upstream version 1.76.0+dfsg1
[rustc.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 | ------ `x` is borrowed here
6 LL | x = 1;
7 | ^^^^^ `x` is assigned to here but it was already borrowed
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 1 previous error
12
13 For more information about this error, try `rustc --explain E0506`.