clippy 0.0.208

A bunch of helpful lints to avoid common pitfalls in Rust



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