rust/src/test/run-pass/negative.rs
2012-08-06 15:36:30 -07:00

6 lines
No EOL
69 B
Rust

fn main() {
match -5 {
-5 => {}
_ => { fail }
}
}