clippy 0.0.208

A bunch of helpful lints to avoid common pitfalls in Rust


#![warn(modulo_one)]
#![allow(no_effect, unnecessary_operation)]

fn main() {
    10 % 1;
    10 % 2;
}