Files
rust/tests/ui/match/expr-match-panic.rs

11 lines
175 B
Rust
Raw Normal View History

//@ run-fail
//@ error-pattern:explicit panic
//@ ignore-emscripten no processes
2011-05-13 14:42:23 -04:00
2016-05-27 08:09:36 +05:30
fn main() {
let _x = match true {
false => 0,
true => panic!(),
};
}