rust/tests/ui/borrowck/borrowck-partial-reinit-3.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
439 B
Plaintext
Raw Normal View History

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
|
LL | mem::drop(x.0);
| --- value moved here
2018-08-08 12:28:26 +00:00
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
2018-08-08 12:28:26 +00:00
error: aborting due to 1 previous error
2018-08-08 12:28:26 +00:00
For more information about this error, try `rustc --explain E0382`.