mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
b92501f124
Signed-off-by: VitalikButerinEth <csyingyu@126.com>
10 lines
269 B
Rust
10 lines
269 B
Rust
#[warn(clippy::double_neg)]
|
|
#[allow(clippy::no_effect)]
|
|
fn main() {
|
|
let x = 1;
|
|
-x;
|
|
-(-x);
|
|
--x;
|
|
//~^ ERROR: `--x` could be misinterpreted as pre-decrement by C programmers, is usually
|
|
//~| NOTE: `-D clippy::double-neg` implied by `-D warnings`
|
|
}
|