Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
numbers-arithmetic
/
u32-decr.rs
blob: 2f68cf6f961604a8d1836fae573c9f69d754e3cf [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
pub
fn
main
()
{
let
mut
word
:
u32
=
200000
;
word
=
word
-
1
;
assert_eq
!(
word
,
199999
);
}