mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
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() { }
|