summary refs log tree commit diff
path: root/src/test/run-pass/expr-if-panic-all.rs
blob: ea7f36f8a3cc288205bf231760795551a485d0eb (plain)
1
2
3
4
5
6
7
8
9
10
// When all branches of an if expression result in panic, the entire if
// expression results in panic.

pub fn main() {
    let _x = if true {
        10
    } else {
        if true { panic!() } else { panic!() }
    };
}