]> git.lizzy.rs Git - rust.git/blob - tests/ui/nll/maybe-initialized-drop-implicit-fragment-drop.stderr
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / tests / ui / nll / maybe-initialized-drop-implicit-fragment-drop.stderr
1 error[E0506]: cannot assign to `x` because it is borrowed
2   --> $DIR/maybe-initialized-drop-implicit-fragment-drop.rs:17:5
3    |
4 LL |     let wrap = Wrap { p: &mut x };
5    |                          ------ `x` is borrowed here
6 ...
7 LL |     x = 1;
8    |     ^^^^^ `x` is assigned to here but it was already borrowed
9 LL |     // FIXME ^ Should not error in the future with implicit dtors, only manually implemented ones
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`.