rust/tests/compile-fail/modulo_one.rs
2016-02-11 13:50:41 +01:00

9 lines
159 B
Rust

#![feature(plugin)]
#![plugin(clippy)]
#![deny(modulo_one)]
#![allow(no_effect)]
fn main() {
10 % 1; //~ERROR any number modulo 1 will be 0
10 % 2;
}