about summary refs log tree commit diff
path: root/tests/ui/numbers-arithmetic/u32-decr.rs
blob: 2f68cf6f961604a8d1836fae573c9f69d754e3cf (plain)
1
2
3
4
5
6
7
8
9
10
//@ run-pass




pub fn main() {
    let mut word: u32 = 200000;
    word = word - 1;
    assert_eq!(word, 199999);
}