rust/src/test/compile-fail/issue-897-2.rs
2012-04-06 06:59:00 -07:00

7 lines
148 B
Rust

fn g() -> ! { fail; }
fn f() -> ! {
ret 42; //! ERROR expected `_|_` but found `int`
g(); //! WARNING unreachable statement
}
fn main() { }