summaryrefslogtreecommitdiffstats
path: root/src/test/ui/expr/if/expr-if-panic-fn.rs
blob: 36e49785a49d0445f6b056261e4fc857bc77afd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// run-fail
// error-pattern:explicit panic
// ignore-emscripten no processes

fn f() -> ! {
    panic!()
}

fn g() -> isize {
    let x = if true {
        f()
    } else {
        10
    };
    return x;
}

fn main() {
    g();
}