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