clippy 0.0.208

A bunch of helpful lints to avoid common pitfalls in Rust



#![warn(short_circuit_statement)]

fn main() {
    f() && g();
    f() || g();
    1 == 2 || g();
}

fn f() -> bool {
    true
}

fn g() -> bool {
    false
}