5 lines
94 B
Rust
5 lines
94 B
Rust
//@ error-pattern: return
|
|
|
|
fn f() -> isize { } //~ ERROR mismatched types
|
|
|
|
fn main() { f(); }
|