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

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