clippy 0.0.208

A bunch of helpful lints to avoid common pitfalls in Rust


#![allow(unused)]
#![warn(clippy)]

fn main() {
    let v = Some(true);
    match v {
        Some(x) => (),
        y @ _   => (),
    }
    match v {
        Some(x)  => (),
        y @ None => (),  // no error
    }
}