d08b443fff
This reverts commit aa25f22f19
. It broke stage2, not sure why yet.
10 lines
118 B
Rust
10 lines
118 B
Rust
// -*- rust -*-
|
|
|
|
fn main() {
|
|
let i8 x = -12i8;
|
|
let i8 y = -12i8;
|
|
x = x + 1i8;
|
|
x = x - 1i8;
|
|
check(x == y);
|
|
}
|