summaryrefslogtreecommitdiffstats
path: root/tests/ui/binding/match-pattern-lit.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/binding/match-pattern-lit.rs')
-rw-r--r--tests/ui/binding/match-pattern-lit.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/binding/match-pattern-lit.rs b/tests/ui/binding/match-pattern-lit.rs
new file mode 100644
index 000000000..c9c6135e2
--- /dev/null
+++ b/tests/ui/binding/match-pattern-lit.rs
@@ -0,0 +1,15 @@
+// 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);
+}