7 lines
152 B
Rust
7 lines
152 B
Rust
fn g() -> ! { fail; }
|
|
fn f() -> ! {
|
|
return 42i; //~ ERROR expected `_|_` but found `int`
|
|
g(); //~ WARNING unreachable statement
|
|
}
|
|
fn main() { }
|