about summary refs log tree commit diff
path: root/tests/ui/binding/match-enum-struct-0.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/binding/match-enum-struct-0.rs')
-rw-r--r--tests/ui/binding/match-enum-struct-0.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/ui/binding/match-enum-struct-0.rs b/tests/ui/binding/match-enum-struct-0.rs
new file mode 100644
index 00000000000..e2623ece84c
--- /dev/null
+++ b/tests/ui/binding/match-enum-struct-0.rs
@@ -0,0 +1,17 @@
+// run-pass
+#![allow(dead_code)]
+// regression test for issue #5625
+
+
+enum E {
+    Foo{f : isize},
+    Bar
+}
+
+pub fn main() {
+    let e = E::Bar;
+    match e {
+        E::Foo{f: _f} => panic!(),
+        _ => (),
+    }
+}