rust/tests/ui/match/expr-match-panic.rs
2023-01-11 09:32:08 +00:00

11 lines
172 B
Rust

// run-fail
// error-pattern:explicit panic
// ignore-emscripten no processes
fn main() {
let _x = match true {
false => 0,
true => panic!(),
};
}