mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 09:44:08 +00:00
45 lines
1.0 KiB
Plaintext
45 lines
1.0 KiB
Plaintext
error: Unnecessary `>= y + 1` or `x - 1 >=`
|
|
--> $DIR/int_plus_one.rs:9:13
|
|
|
|
|
LL | let _ = x >= y + 1;
|
|
| ^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::int-plus-one` implied by `-D warnings`
|
|
help: change `>= y + 1` to `> y` as shown
|
|
|
|
|
LL | let _ = x > y;
|
|
| ^^^^^
|
|
|
|
error: Unnecessary `>= y + 1` or `x - 1 >=`
|
|
--> $DIR/int_plus_one.rs:10:13
|
|
|
|
|
LL | let _ = y + 1 <= x;
|
|
| ^^^^^^^^^^
|
|
help: change `>= y + 1` to `> y` as shown
|
|
|
|
|
LL | let _ = y < x;
|
|
| ^^^^^
|
|
|
|
error: Unnecessary `>= y + 1` or `x - 1 >=`
|
|
--> $DIR/int_plus_one.rs:12:13
|
|
|
|
|
LL | let _ = x - 1 >= y;
|
|
| ^^^^^^^^^^
|
|
help: change `>= y + 1` to `> y` as shown
|
|
|
|
|
LL | let _ = x > y;
|
|
| ^^^^^
|
|
|
|
error: Unnecessary `>= y + 1` or `x - 1 >=`
|
|
--> $DIR/int_plus_one.rs:13:13
|
|
|
|
|
LL | let _ = y <= x - 1;
|
|
| ^^^^^^^^^^
|
|
help: change `>= y + 1` to `> y` as shown
|
|
|
|
|
LL | let _ = y < x;
|
|
| ^^^^^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|