mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
192 B
Rust
15 lines
192 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;
|
|
}
|