summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/double_neg.rs
blob: 38a8fbd74dcf61b540b16b34a496b9005d5ba800 (plain)
1
2
3
4
5
6
7
8
#[warn(clippy::double_neg)]
#[allow(clippy::no_effect)]
fn main() {
    let x = 1;
    -x;
    -(-x);
    --x;
}