diff options
Diffstat (limited to 'tests/ui/borrowck/borrowck-partial-reinit-3.stderr')
-rw-r--r-- | tests/ui/borrowck/borrowck-partial-reinit-3.stderr | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/ui/borrowck/borrowck-partial-reinit-3.stderr b/tests/ui/borrowck/borrowck-partial-reinit-3.stderr new file mode 100644 index 000000000..05f5411ee --- /dev/null +++ b/tests/ui/borrowck/borrowck-partial-reinit-3.stderr @@ -0,0 +1,13 @@ +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`. |