summary refs log tree commit diff
path: root/src/test/run-pass/u32-decr.rs
blob: 0606f86dc44a86315061296486449c64760ae98f (plain)
1
2
3
4
5
6
7
8
9



// -*- rust -*-
fn main() {
    let mut word: u32 = 200000u32;
    word = word - 1u32;
    assert (word == 199999u32);
}