mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
15 lines
260 B
Rust
15 lines
260 B
Rust
#[allow(clippy::no_effect, clippy::unnecessary_operation)]
|
|
#[warn(clippy::int_plus_one)]
|
|
fn main() {
|
|
let x = 1i32;
|
|
let y = 0i32;
|
|
|
|
x >= y + 1;
|
|
y + 1 <= x;
|
|
|
|
x - 1 >= y;
|
|
y <= x - 1;
|
|
|
|
x > y; // should be ok
|
|
y < x; // should be ok
|
|
}
|