4 lines
102 B
Rust
4 lines
102 B
Rust
// error-pattern: mismatched types
|
|
fn mk_int() -> usize { let i: isize = 3; return i; }
|
|
fn main() { }
|