summaryrefslogtreecommitdiffstats
path: root/src/test/ui/moves/moves-based-on-type-match-bindings.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/moves/moves-based-on-type-match-bindings.stderr')
-rw-r--r--src/test/ui/moves/moves-based-on-type-match-bindings.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/moves/moves-based-on-type-match-bindings.stderr b/src/test/ui/moves/moves-based-on-type-match-bindings.stderr
new file mode 100644
index 000000000..ad1a2db8b
--- /dev/null
+++ b/src/test/ui/moves/moves-based-on-type-match-bindings.stderr
@@ -0,0 +1,14 @@
+error[E0382]: borrow of partially moved value: `x`
+ --> $DIR/moves-based-on-type-match-bindings.rs:16:11
+ |
+LL | Foo {f} => {}
+ | - value partially moved here
+...
+LL | touch(&x);
+ | ^^ value borrowed here after partial move
+ |
+ = note: partial move occurs because `x.f` has type `String`, which does not implement the `Copy` trait
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0382`.