summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/modulo_one.rs
blob: cc8c8e7cdaefd5a203b3e9839fe1db98dfdc9fc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![warn(clippy::modulo_one)]
#![allow(clippy::no_effect, clippy::unnecessary_operation)]

static STATIC_ONE: usize = 2 - 1;

fn main() {
    10 % 1;
    10 % 2;

    const ONE: u32 = 1 * 1;

    2 % ONE;
    5 % STATIC_ONE;
}