mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
437 B
Plaintext
14 lines
437 B
Plaintext
error[E0382]: assign of moved value: `x.0`
|
|
--> $DIR/borrowck-partial-reinit-3.rs:11:5
|
|
|
|
|
LL | mem::drop(x.0);
|
|
| --- value moved here
|
|
LL | x.0.f = 3;
|
|
| ^^^^^^^^^ value assigned here after move
|
|
|
|
|
= note: move occurs because `x.0` has type `Test`, which does not implement the `Copy` trait
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|