rust/src/test/run-pass/alt-pattern-lit.rs

11 lines
218 B
Rust
Raw Normal View History

2011-07-27 07:19:39 -05:00
fn altlit(f: int) -> int {
2012-08-06 14:34:08 -05:00
match check f {
2012-08-22 19:24:52 -05:00
10 => { debug!("case 10"); return 20; }
11 => { debug!("case 11"); return 22; }
}
2011-02-10 21:13:39 -06:00
}
fn main() { assert (altlit(10) == 20); assert (altlit(11) == 22); }