1655c1a825
This doesn't seem to show up anywhere else in the test suite, even though it's supposed to be legal.
10 lines
113 B
Rust
10 lines
113 B
Rust
fn main() {
|
|
let x: int = 8i;
|
|
let y = 9i;
|
|
x + y;
|
|
|
|
let q: int = -8i;
|
|
let r = -9i;
|
|
q + r;
|
|
}
|