blob: 2a726efe8225d478b45079a006a4e646a3482d3e [file] [log] [blame]
// run-pass
#![allow(dead_code)]
// Just testing that panic!() type checks in statement or expr
#![allow(unreachable_code)]
fn f() {
panic!();
let _x: isize = panic!();
}
pub fn main() {
}