blob: ac31b49a1e99ef2e644f26694132cb1cdd182f77 [file] [log] [blame]
// 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!() } } }
};
}