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
437 B
Plaintext
Raw Normal View History

error[E0382]: assign of moved value: `x.0`
2018-12-25 09:56:47 -06:00
--> $DIR/borrowck-partial-reinit-3.rs:11:5
2018-08-08 07:28:26 -05:00
|
LL | mem::drop(x.0);
| --- value moved here
2018-08-08 07:28:26 -05: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 07:28:26 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0382`.