2019-04-22 07:40:08 +00:00
|
|
|
error[E0382]: assign of moved value: `x.0`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/borrowck-partial-reinit-3.rs:11:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
LL | mem::drop(x.0);
|
|
|
|
| --- value moved here
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | x.0.f = 3;
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^^^^^^^^ value assigned here after move
|
|
|
|
|
|
|
|
|
= note: move occurs because `x.0` has type `Test`, which does not implement the `Copy` trait
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
For more information about this error, try `rustc --explain E0382`.
|