clippy 0.0.201

A bunch of helpful lints to avoid common pitfalls in Rust
1
2
3
4
5
6
7
8
9


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

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