mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
190 B
Rust
15 lines
190 B
Rust
// run-pass
|
|
|
|
#![allow(unused_must_use)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
pub fn main() {
|
|
let x: isize = 8;
|
|
let y = 9;
|
|
x + y;
|
|
|
|
let q: isize = -8;
|
|
let r = -9;
|
|
q + r;
|
|
}
|