mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
bcd95aec1c
* start first sentence lowercased * use backticks to delimit code snippets * use "this is wrong. Consider doing X." consistently
8 lines
138 B
Rust
Executable file
8 lines
138 B
Rust
Executable file
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
#![deny(modulo_one)]
|
|
|
|
fn main() {
|
|
10 % 1; //~ERROR any number modulo 1 will be 0
|
|
10 % 2;
|
|
}
|