9 lines
91 B
Rust
9 lines
91 B
Rust
// run-pass
|
|
|
|
pub fn main() {
|
|
match -5 {
|
|
-5 => {}
|
|
_ => { panic!() }
|
|
}
|
|
}
|