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

6 lines
127 B
Rust

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