mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 13:43:17 +00:00
11 lines
211 B
Rust
11 lines
211 B
Rust
|
#![feature(plugin)]
|
||
|
#![plugin(clippy)]
|
||
|
|
||
|
#[deny(double_neg)]
|
||
|
fn main() {
|
||
|
let x = 1;
|
||
|
-x;
|
||
|
-(-x);
|
||
|
--x; //~ERROR: `--x` could be misinterpreted as pre-decrement by C programmers, is usually a no-op
|
||
|
}
|