mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-03 18:43:38 +00:00
11 lines
111 B
Rust
11 lines
111 B
Rust
#![feature(tool_lints)]
|
|
|
|
|
|
#[warn(clippy::double_neg)]
|
|
fn main() {
|
|
let x = 1;
|
|
-x;
|
|
-(-x);
|
|
--x;
|
|
}
|