summaryrefslogtreecommitdiffstats
path: root/src/test/ui/or-patterns/basic-switch.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/or-patterns/basic-switch.rs')
-rw-r--r--src/test/ui/or-patterns/basic-switch.rs31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/test/ui/or-patterns/basic-switch.rs b/src/test/ui/or-patterns/basic-switch.rs
deleted file mode 100644
index 674fbc3cc..000000000
--- a/src/test/ui/or-patterns/basic-switch.rs
+++ /dev/null
@@ -1,31 +0,0 @@
-// Test basic or-patterns when the target pattern type will be lowered to a
-// `Switch` (an `enum`).
-
-// run-pass
-
-#[derive(Debug)]
-enum Test {
- Foo,
- Bar,
- Baz,
- Qux,
-}
-
-fn test(x: Option<Test>) -> bool {
- match x {
- // most simple case
- Some(Test::Bar | Test::Qux) => true,
- // wild case
- Some(_) => false,
- // empty case
- None => false,
- }
-}
-
-fn main() {
- assert!(!test(Some(Test::Foo)));
- assert!(test(Some(Test::Bar)));
- assert!(!test(Some(Test::Baz)));
- assert!(test(Some(Test::Qux)));
- assert!(!test(None))
-}