summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/die-macro.rs
blob: 2a726efe8225d478b45079a006a4e646a3482d3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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() {

}