about summary refs log tree commit diff
path: root/src/test/ui/or-patterns/mix-with-wild.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/or-patterns/mix-with-wild.rs')
-rw-r--r--src/test/ui/or-patterns/mix-with-wild.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test/ui/or-patterns/mix-with-wild.rs b/src/test/ui/or-patterns/mix-with-wild.rs
deleted file mode 100644
index d9911cda1b6..00000000000
--- a/src/test/ui/or-patterns/mix-with-wild.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-// Test that an or-pattern works with a wild pattern. This tests two things:
-//
-//  1) The Wild pattern should cause the pattern to always succeed.
-//  2) or-patterns should work with simplifyable patterns.
-
-// run-pass
-
-pub fn test(x: Option<usize>) -> bool {
-    match x {
-        Some(0 | _) => true,
-        _ => false,
-    }
-}
-
-fn main() {
-    assert!(test(Some(42)));
-    assert!(!test(None));
-}