clippy 0.0.208

A bunch of helpful lints to avoid common pitfalls in Rust
fn main() {
    println!();
    println!("");

    match "a" {
        _ => println!(""),
    }
}