1
Fork 0
rust/tests/ui-toml/modulo_arithmetic/modulo_arithmetic.rs
2024-02-08 20:24:42 +01:00

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