1 #[warn(clippy::double_neg)]
2 #[allow(clippy::no_effect)]
main()3 fn main() {
4     let x = 1;
5     -x;
6     -(-x);
7     --x;
8 }
9