mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
10 lines
178 B
Rust
10 lines
178 B
Rust
#![warn(clippy::modulo_arithmetic)]
|
|
|
|
fn main() {
|
|
let a = -1;
|
|
let b = 2;
|
|
let c = a % b == 0;
|
|
let c = a % b != 0;
|
|
let c = 0 == a % b;
|
|
let c = 0 != a % b;
|
|
}
|