mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-13 08:27:14 +00:00
9 lines
106 B
Rust
9 lines
106 B
Rust
|
|
|
|
#![warn(modulo_one)]
|
|
#![allow(no_effect, unnecessary_operation)]
|
|
|
|
fn main() {
|
|
10 % 1;
|
|
10 % 2;
|
|
}
|