1 2 3 4 5 6 7 8 9
fn main() { let x: int = 8i; let y = 9i; x + y; let q: int = -8i; let r = -9i; q + r; }