Sign in
android
/
toolchain
/
rustc
/
9cf678059bdfead0671d48dbbb51b152b62d6995
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
cast_abs_to_unsigned.rs
blob: 59b9c8c367883b7883f05a8d065d9e688ee68eca [
file
] [
log
] [
blame
]
// run-rustfix
#![
warn
(
clippy
::
cast_abs_to_unsigned
)]
fn
main
()
{
let
x
:
i32
=
-
42
;
let
y
:
u32
=
x
.
abs
()
as
u32
;
println
!(
"The absolute value of {} is {}"
,
x
,
y
);
}