summaryrefslogtreecommitdiffstats
path: root/src/test/ui/binding/match-pattern-lit.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/binding/match-pattern-lit.rs')
-rw-r--r--src/test/ui/binding/match-pattern-lit.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/binding/match-pattern-lit.rs b/src/test/ui/binding/match-pattern-lit.rs
deleted file mode 100644
index c9c6135e2..000000000
--- a/src/test/ui/binding/match-pattern-lit.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-// run-pass
-
-
-fn altlit(f: isize) -> isize {
- match f {
- 10 => { println!("case 10"); return 20; }
- 11 => { println!("case 11"); return 22; }
- _ => panic!("the impossible happened")
- }
-}
-
-pub fn main() {
- assert_eq!(altlit(10), 20);
- assert_eq!(altlit(11), 22);
-}