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

20 lines
241 B
Rust

// run-fail
// error-pattern:explicit panic
// ignore-emscripten no processes
fn f() -> ! {
panic!()
}
fn g() -> isize {
let x = match true {
true => f(),
false => 10,
};
return x;
}
fn main() {
g();
}