rust/tests/ui/binding/expr-match-panic-all.rs
2024-02-16 20:02:50 +00:00

15 lines
295 B
Rust

//@ run-pass
// When all branches of a match expression result in panic, the entire
// match expression results in panic.
pub fn main() {
let _x =
match true {
true => { 10 }
false => { match true { true => { panic!() } false => { panic!() } } }
};
}