bcd95aec1c
* start first sentence lowercased * use backticks to delimit code snippets * use "this is wrong. Consider doing X." consistently
9 lines
138 B
Rust
Executable File
9 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;
|
|
}
|