summaryrefslogtreecommitdiffstats
path: root/src/test/ui/match/match-wildcards.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/match/match-wildcards.rs')
-rw-r--r--src/test/ui/match/match-wildcards.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/match/match-wildcards.rs b/src/test/ui/match/match-wildcards.rs
deleted file mode 100644
index 43f6e4913..000000000
--- a/src/test/ui/match/match-wildcards.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-// run-fail
-// error-pattern:squirrelcupcake
-// ignore-emscripten no processes
-
-fn cmp() -> isize {
- match (Some('a'), None::<char>) {
- (Some(_), _) => {
- panic!("squirrelcupcake");
- }
- (_, Some(_)) => {
- panic!();
- }
- _ => {
- panic!("wat");
- }
- }
-}
-
-fn main() {
- println!("{}", cmp());
-}