rust/tests/ui/lint/lint-double-negations.rs

10 lines
205 B
Rust
Raw Normal View History

2024-09-01 17:22:35 +00:00
//@ check-pass
fn main() {
let x = 1;
-x;
-(-x);
--x; //~ WARN use of a double negation
---x; //~ WARN use of a double negation
let _y = --(-x); //~ WARN use of a double negation
}