]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/maybe-initialized-drop-with-uninitialized-fragments.stderr
Auto merge of #105145 - Ayush1325:sequential-remote-server, r=Mark-Simulacrum
[rust.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:20:5
3    |
4 LL |     let wrap = Wrap { p: &mut x };
5    |                          ------ borrow of `x` occurs here
6 ...
7 LL |     x = 1;
8    |     ^^^^^ assignment to borrowed `x` occurs here
9 LL |     // FIXME ^ This currently errors and it should not.
10 LL | }
11    | - borrow might be used here, when `foo` is dropped and runs the destructor for type `Foo<'_>`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0506`.