about summary refs log tree commit diff
path: root/src/test/ui/compile-fail-migration/move-out-of-tuple-field.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/compile-fail-migration/move-out-of-tuple-field.stderr')
-rw-r--r--src/test/ui/compile-fail-migration/move-out-of-tuple-field.stderr23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/test/ui/compile-fail-migration/move-out-of-tuple-field.stderr b/src/test/ui/compile-fail-migration/move-out-of-tuple-field.stderr
new file mode 100644
index 00000000000..1e8acf5a64b
--- /dev/null
+++ b/src/test/ui/compile-fail-migration/move-out-of-tuple-field.stderr
@@ -0,0 +1,23 @@
+error[E0382]: use of moved value: `x.0`
+  --> $DIR/move-out-of-tuple-field.rs:18:9
+   |
+LL |     let y = x.0;
+   |         - value moved here
+LL |     let z = x.0; //~ ERROR use of moved value: `x.0`
+   |         ^ value used here after move
+   |
+   = note: move occurs because `x.0` has type `std::boxed::Box<i32>`, which does not implement the `Copy` trait
+
+error[E0382]: use of moved value: `x.0`
+  --> $DIR/move-out-of-tuple-field.rs:22:9
+   |
+LL |     let y = x.0;
+   |         - value moved here
+LL |     let z = x.0; //~ ERROR use of moved value: `x.0`
+   |         ^ value used here after move
+   |
+   = note: move occurs because `x.0` has type `std::boxed::Box<isize>`, which does not implement the `Copy` trait
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0382`.