11 lines
131 B
Rust
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() {
|
|
|
|
}
|