mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
9 lines
182 B
Rust
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;
|
|
}
|