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

12 lines
134 B
Rust

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