rust-clippy/tests/ui/double_neg.rs

11 lines
80 B
Rust
Raw Normal View History

2017-09-18 10:47:33 +00:00
2016-06-29 23:00:25 +00:00
#[warn(double_neg)]
2016-06-29 23:00:25 +00:00
fn main() {
let x = 1;
-x;
-(-x);
2017-02-08 13:58:07 +00:00
--x;
2016-06-29 23:00:25 +00:00
}