rust/clippy_tests/examples/modulo_one.rs

10 lines
143 B
Rust

#![feature(plugin)]
#![plugin(clippy)]
#![warn(modulo_one)]
#![allow(no_effect, unnecessary_operation)]
fn main() {
10 % 1;
10 % 2;
}