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

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