rust/tests/ui/macros/die-macro.rs
2023-01-11 09:32:08 +00:00

17 lines
203 B
Rust

// 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() {
}