about summary refs log tree commit diff
path: root/src/test/ui/binding/match-vec-rvalue.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/binding/match-vec-rvalue.rs')
-rw-r--r--src/test/ui/binding/match-vec-rvalue.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/binding/match-vec-rvalue.rs b/src/test/ui/binding/match-vec-rvalue.rs
deleted file mode 100644
index fead2254c75..00000000000
--- a/src/test/ui/binding/match-vec-rvalue.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-// run-pass
-// Tests that matching rvalues with drops does not crash.
-
-
-
-pub fn main() {
-    match vec![1, 2, 3] {
-        x => {
-            assert_eq!(x.len(), 3);
-            assert_eq!(x[0], 1);
-            assert_eq!(x[1], 2);
-            assert_eq!(x[2], 3);
-        }
-    }
-}