mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
28 lines
780 B
Text
28 lines
780 B
Text
error: unnecessary `>= y + 1` or `x - 1 >=`
|
|
--> $DIR/int_plus_one.rs:9:13
|
|
|
|
|
LL | let _ = x >= y + 1;
|
|
| ^^^^^^^^^^ help: change it to: `x > y`
|
|
|
|
|
= note: `-D clippy::int-plus-one` implied by `-D warnings`
|
|
|
|
error: unnecessary `>= y + 1` or `x - 1 >=`
|
|
--> $DIR/int_plus_one.rs:10:13
|
|
|
|
|
LL | let _ = y + 1 <= x;
|
|
| ^^^^^^^^^^ help: change it to: `y < x`
|
|
|
|
error: unnecessary `>= y + 1` or `x - 1 >=`
|
|
--> $DIR/int_plus_one.rs:12:13
|
|
|
|
|
LL | let _ = x - 1 >= y;
|
|
| ^^^^^^^^^^ help: change it to: `x > y`
|
|
|
|
error: unnecessary `>= y + 1` or `x - 1 >=`
|
|
--> $DIR/int_plus_one.rs:13:13
|
|
|
|
|
LL | let _ = y <= x - 1;
|
|
| ^^^^^^^^^^ help: change it to: `y < x`
|
|
|
|
error: aborting due to 4 previous errors
|
|
|