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