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