mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
10 lines
323 B
Text
10 lines
323 B
Text
error: casting the result of `i32::abs()` to u32
|
|
--> $DIR/cast_abs_to_unsigned.rs:6:18
|
|
|
|
|
LL | let y: u32 = x.abs() as u32;
|
|
| ^^^^^^^^^^^^^^ help: replace with: `x.unsigned_abs()`
|
|
|
|
|
= note: `-D clippy::cast-abs-to-unsigned` implied by `-D warnings`
|
|
|
|
error: aborting due to previous error
|
|
|