daf5f5a4d1
Who doesn't like a massive renaming?
14 lines
164 B
Rust
14 lines
164 B
Rust
// Just testing that fail!() type checks in statement or expr
|
|
|
|
#[allow(unreachable_code)];
|
|
|
|
fn f() {
|
|
fail!();
|
|
|
|
let _x: int = fail!();
|
|
}
|
|
|
|
pub fn main() {
|
|
|
|
}
|