mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
9 lines
143 B
Rust
9 lines
143 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
#![deny(modulo_one)]
|
|
#![allow(no_effect, unnecessary_operation)]
|
|
|
|
fn main() {
|
|
10 % 1;
|
|
10 % 2;
|
|
}
|