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