mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 09:00:34 -04:00
93bee0789a
when possible.
5 lines
226 B
Rust
5 lines
226 B
Rust
fn f() -> isize { } //~ ERROR mismatched types
|
|
//~| NOTE implicitly returns `()` as its body has no tail or `return` expression
|
|
//~| NOTE expected `isize`, found `()`
|
|
fn main() { f(); }
|