mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 05:57:03 +03:00
11 lines
80 B
Rust
11 lines
80 B
Rust
|
|
|
|
|
|
#[warn(double_neg)]
|
|
fn main() {
|
|
let x = 1;
|
|
-x;
|
|
-(-x);
|
|
--x;
|
|
}
|