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

8 lines
174 B
Rust
Raw Normal View History

2011-07-27 07:19:39 -05:00
fn altlit(f: int) -> int {
alt f { 10 { log "case 10"; ret 20; } 11 { log "case 11"; ret 22; } }
2011-02-10 21:13:39 -06:00
}
fn main() { assert (altlit(10) == 20); assert (altlit(11) == 22); }