about summary refs log tree commit diff
path: root/tests/ui/disallowed-deconstructing/disallowed-deconstructing-destructing-struct-match.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/disallowed-deconstructing/disallowed-deconstructing-destructing-struct-match.rs')
-rw-r--r--tests/ui/disallowed-deconstructing/disallowed-deconstructing-destructing-struct-match.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/ui/disallowed-deconstructing/disallowed-deconstructing-destructing-struct-match.rs b/tests/ui/disallowed-deconstructing/disallowed-deconstructing-destructing-struct-match.rs
new file mode 100644
index 00000000000..815567ffec3
--- /dev/null
+++ b/tests/ui/disallowed-deconstructing/disallowed-deconstructing-destructing-struct-match.rs
@@ -0,0 +1,19 @@
+// run-rustfix
+struct X {
+    x: String,
+}
+
+impl Drop for X {
+    fn drop(&mut self) {
+        println!("value: {}", self.x);
+    }
+}
+
+fn main() {
+    let x = X { x: "hello".to_string() };
+
+    match x {
+    //~^ ERROR cannot move out of type `X`, which implements the `Drop` trait
+        X { x: y } => println!("contents: {}", y)
+    }
+}