rust-clippy/tests/ui/double_neg.rs
2017-08-01 17:54:21 +02:00

10 lines
117 B
Rust

#![feature(plugin)]
#![plugin(clippy)]
#[warn(double_neg)]
fn main() {
let x = 1;
-x;
-(-x);
--x;
}