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
44 lines
911 B
Text
44 lines
911 B
Text
error: Unnecessary `>= y + 1` or `x - 1 >=`
|
|
--> $DIR/int_plus_one.rs:7:5
|
|
|
|
|
LL | x >= y + 1;
|
|
| ^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::int-plus-one` implied by `-D warnings`
|
|
help: change `>= y + 1` to `> y` as shown
|
|
|
|
|
LL | x > y;
|
|
| ^^^^^
|
|
|
|
error: Unnecessary `>= y + 1` or `x - 1 >=`
|
|
--> $DIR/int_plus_one.rs:8:5
|
|
|
|
|
LL | y + 1 <= x;
|
|
| ^^^^^^^^^^
|
|
help: change `>= y + 1` to `> y` as shown
|
|
|
|
|
LL | y < x;
|
|
| ^^^^^
|
|
|
|
error: Unnecessary `>= y + 1` or `x - 1 >=`
|
|
--> $DIR/int_plus_one.rs:10:5
|
|
|
|
|
LL | x - 1 >= y;
|
|
| ^^^^^^^^^^
|
|
help: change `>= y + 1` to `> y` as shown
|
|
|
|
|
LL | x > y;
|
|
| ^^^^^
|
|
|
|
error: Unnecessary `>= y + 1` or `x - 1 >=`
|
|
--> $DIR/int_plus_one.rs:11:5
|
|
|
|
|
LL | y <= x - 1;
|
|
| ^^^^^^^^^^
|
|
help: change `>= y + 1` to `> y` as shown
|
|
|
|
|
LL | y < x;
|
|
| ^^^^^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|