mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 12:07:40 +00:00

Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
14 lines
159 B
Rust
14 lines
159 B
Rust
//@ run-pass
|
|
|
|
#![allow(unused_must_use)]
|
|
|
|
pub fn main() {
|
|
let x: isize = 8;
|
|
let y = 9;
|
|
x + y;
|
|
|
|
let q: isize = -8;
|
|
let r = -9;
|
|
q + r;
|
|
}
|