aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/i32-sub.rs
blob: 99bd39364596b9bae8568552074473c0cbd35241 (plain) (blame)
1
2
3
4
5
6
7
8
// -*- rust -*-

fn main() {
    let i32 x = i32(-400);
    x = i32(0) - x;
    check(x == i32(400));
}