clippy 0.0.31

A bunch of helpful lints to avoid common pitfalls in Rust
fn m() -> bool {
if 1 > 3 {
 return true;
};

false
}

fn main() {}