blob: b717eed3fb438aeee23ca09b5c57efae7ac1d871 (
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() {
}
|