rust/src/test/ui/negative.rs

9 lines
91 B
Rust

// run-pass
pub fn main() {
match -5 {
-5 => {}
_ => { panic!() }
}
}