rust-clippy/tests/ui/int_plus_one.stderr
2024-02-17 12:34:54 +00:00

29 lines
869 B
Text

error: unnecessary `>= y + 1` or `x - 1 >=`
--> tests/ui/int_plus_one.rs:7:13
|
LL | let _ = x >= y + 1;
| ^^^^^^^^^^ help: change it to: `x > y`
|
= note: `-D clippy::int-plus-one` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::int_plus_one)]`
error: unnecessary `>= y + 1` or `x - 1 >=`
--> tests/ui/int_plus_one.rs:8:13
|
LL | let _ = y + 1 <= x;
| ^^^^^^^^^^ help: change it to: `y < x`
error: unnecessary `>= y + 1` or `x - 1 >=`
--> tests/ui/int_plus_one.rs:10:13
|
LL | let _ = x - 1 >= y;
| ^^^^^^^^^^ help: change it to: `x > y`
error: unnecessary `>= y + 1` or `x - 1 >=`
--> tests/ui/int_plus_one.rs:11:13
|
LL | let _ = y <= x - 1;
| ^^^^^^^^^^ help: change it to: `y < x`
error: aborting due to 4 previous errors