We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I think this should warn: f never returns, but it claims to return int.
fn f() -> int { fail!("f") } fn main() { f(); }