rust/tests/compile-fail/modulo_one.rs
Georg Brandl bcd95aec1c all: make style of lint messages consistent
* start first sentence lowercased
* use backticks to delimit code snippets
* use "this is wrong. Consider doing X." consistently
2015-08-12 10:47:09 +02:00

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;
}