aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/u32-decr.rs
blob: 1ff511aa6bb0c191350eba9b095bb8bd90d8897c (plain) (blame)
1
2
3
4
5
6
7
8
// -*- rust -*-

fn main() {
    let u32 word = (200000u32);
    word = word - (1u32);
    check(word == (199999u32));
}