blob: 0b4742d4a89990fc81675e92505dfcc988ee26d2 [file] [log] [blame]
//@ run-fail
//@ error-pattern:explicit panic
//@ needs-subprocess
fn f() -> ! {
panic!()
}
fn g() -> isize {
let x = if true {
f()
} else {
10
};
return x;
}
fn main() {
g();
}