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

12 lines
127 B
Rust
Raw Normal View History

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