about summary refs log tree commit diff
path: root/tests/ui/match/expr-match-panic-fn.rs
blob: a07c2c6af8f79af25e771f5d097fb110efaaa345 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//@ run-fail
//@ error-pattern:explicit panic
//@ needs-subprocess

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

fn g() -> isize {
    let x = match true {
        true => f(),
        false => 10,
    };
    return x;
}

fn main() {
    g();
}