2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-02-18 15:08:47 +00:00
rust-clippy/tests/compile-fail/modulo_one.rs

9 lines
182 B
Rust

#![feature(plugin)]
#![plugin(clippy)]
#![deny(modulo_one)]
#![allow(no_effect, unnecessary_operation)]
fn main() {
10 % 1; //~ERROR any number modulo 1 will be 0
10 % 2;
}