about summary refs log tree commit diff
path: root/tests/ui/binding/expr-match-panic-all.rs
blob: 928f4d012b4522708c5285e72d9f738b038c66b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//@ 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!() } } }
        };
}