mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 15:37:15 +00:00
44 lines
913 B
Text
44 lines
913 B
Text
error: Unnecessary `>= y + 1` or `x - 1 >=`
|
|
--> $DIR/int_plus_one.rs:16:5
|
|
|
|
|
16 | x >= y + 1;
|
|
| ^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::int-plus-one` implied by `-D warnings`
|
|
help: change `>= y + 1` to `> y` as shown
|
|
|
|
|
16 | x > y;
|
|
| ^^^^^
|
|
|
|
error: Unnecessary `>= y + 1` or `x - 1 >=`
|
|
--> $DIR/int_plus_one.rs:17:5
|
|
|
|
|
17 | y + 1 <= x;
|
|
| ^^^^^^^^^^
|
|
help: change `>= y + 1` to `> y` as shown
|
|
|
|
|
17 | y < x;
|
|
| ^^^^^
|
|
|
|
error: Unnecessary `>= y + 1` or `x - 1 >=`
|
|
--> $DIR/int_plus_one.rs:19:5
|
|
|
|
|
19 | x - 1 >= y;
|
|
| ^^^^^^^^^^
|
|
help: change `>= y + 1` to `> y` as shown
|
|
|
|
|
19 | x > y;
|
|
| ^^^^^
|
|
|
|
error: Unnecessary `>= y + 1` or `x - 1 >=`
|
|
--> $DIR/int_plus_one.rs:20:5
|
|
|
|
|
20 | y <= x - 1;
|
|
| ^^^^^^^^^^
|
|
help: change `>= y + 1` to `> y` as shown
|
|
|
|
|
20 | y < x;
|
|
| ^^^^^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|