5 lines
85 B
Rust
5 lines
85 B
Rust
|
fn main() {
|
||
|
let abs: i32 = 3i32.checked_abs();
|
||
|
//~^ ERROR mismatched types
|
||
|
}
|