mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
10 lines
80 B
Rust
10 lines
80 B
Rust
|
|
|
|
|
|
#[warn(double_neg)]
|
|
fn main() {
|
|
let x = 1;
|
|
-x;
|
|
-(-x);
|
|
--x;
|
|
}
|