rust/src/test/run-pass/negative.rs

6 lines
69 B
Rust
Raw Normal View History

2011-09-02 00:39:44 -05:00
fn main() {
2012-08-06 14:34:08 -05:00
match -5 {
2012-08-03 21:59:04 -05:00
-5 => {}
_ => { fail }
2011-09-02 00:39:44 -05:00
}
}