]> git.proxmox.com Git - rustc.git/blob - src/test/ui/nll/maybe-initialized-drop-with-uninitialized-fragments.stderr
New upstream version 1.25.0+dfsg1
[rustc.git] / src / test / ui / nll / maybe-initialized-drop-with-uninitialized-fragments.stderr
1 error[E0506]: cannot assign to `x` because it is borrowed
2 --> $DIR/maybe-initialized-drop-with-uninitialized-fragments.rs:32:5
3 |
4 27 | let wrap = Wrap { p: &mut x };
5 | ------ borrow of `x` occurs here
6 ...
7 32 | x = 1; //~ ERROR cannot assign to `x` because it is borrowed [E0506]
8 | ^^^^^ assignment to borrowed `x` occurs here
9 33 | // FIXME ^ This currently errors and it should not.
10 34 | }
11 | - borrow later used here, when `foo` is dropped
12
13 error: aborting due to previous error
14