summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/int_plus_one.rs
blob: 0755a0c79d2801eb50e1f372fd4ff1aaf71d8f69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// run-rustfix

#[allow(clippy::no_effect, clippy::unnecessary_operation)]
#[warn(clippy::int_plus_one)]
fn main() {
    let x = 1i32;
    let y = 0i32;

    let _ = x >= y + 1;
    let _ = y + 1 <= x;

    let _ = x - 1 >= y;
    let _ = y <= x - 1;

    let _ = x > y; // should be ok
    let _ = y < x; // should be ok
}