rust/tests/ui/modulo_one.rs

10 lines
106 B
Rust
Raw Normal View History

2017-09-18 05:47:33 -05:00
#![warn(modulo_one)]
#![allow(no_effect, unnecessary_operation)]
fn main() {
2017-02-08 07:58:07 -06:00
10 % 1;
10 % 2;
}