clippy 0.0.208

A bunch of helpful lints to avoid common pitfalls in Rust


#![warn(clippy)]
#![warn(if_not_else)]

fn bla() -> bool { unimplemented!() }

fn main() {
    if !bla() {
        println!("Bugs");
    } else {
        println!("Bunny");
    }
    if 4 != 5 {
        println!("Bugs");
    } else {
        println!("Bunny");
    }
}