rust/src/test/run-pass/die-macro.rs

11 lines
131 B
Rust

// Just testing that die!() type checks in statement or expr
fn f() {
die!();
let x: int = die!();
}
pub fn main() {
}