]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-partial-reinit-3.stderr
Auto merge of #106646 - Amanieu:ilp32-object, r=Mark-Simulacrum
[rust.git] / tests / ui / borrowck / borrowck-partial-reinit-3.stderr
1 error[E0382]: assign of moved value: `x.0`
2   --> $DIR/borrowck-partial-reinit-3.rs:11:5
3    |
4 LL |     mem::drop(x.0);
5    |               --- value moved here
6 LL |     x.0.f = 3;
7    |     ^^^^^^^^^ value assigned here after move
8    |
9    = note: move occurs because `x.0` has type `Test`, which does not implement the `Copy` trait
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0382`.