summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/double_neg.rs
blob: da82890443eb88673a69ebd9034e14fd35cccb08 (plain)
1
2
3
4
5
6
7
8
9
10
#[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 usuall
    //~| NOTE: `-D clippy::double-neg` implied by `-D warnings`
}