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); }