aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/i8-incr.rs
blob: 57029a13ae937fe8b6a01d03ea36d6c8aef2a88d (plain) (blame)
1
2
3
4
5
6
7
8
9
// -*- rust -*-

fn main() {
  let i8 x = i8(-12);
  let i8 y = i8(-12);
  x = x + i8(1);
  x = x - i8(1);
  check(x == y);
}