2020-08-11 13:14:32 +00:00
|
|
|
error: unnecessary `>= y + 1` or `x - 1 >=`
|
2019-08-18 07:24:30 +00:00
|
|
|
--> $DIR/int_plus_one.rs:9:13
|
2017-09-17 16:27:40 +00:00
|
|
|
|
|
2019-08-18 07:24:30 +00:00
|
|
|
LL | let _ = x >= y + 1;
|
2019-08-28 05:29:30 +00:00
|
|
|
| ^^^^^^^^^^ help: change it to: `x > y`
|
2017-09-17 16:27:40 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::int-plus-one` implied by `-D warnings`
|
2017-09-17 16:27:40 +00:00
|
|
|
|
2020-08-11 13:14:32 +00:00
|
|
|
error: unnecessary `>= y + 1` or `x - 1 >=`
|
2019-08-18 07:24:30 +00:00
|
|
|
--> $DIR/int_plus_one.rs:10:13
|
2017-09-17 16:27:40 +00:00
|
|
|
|
|
2019-08-18 07:24:30 +00:00
|
|
|
LL | let _ = y + 1 <= x;
|
2019-08-28 05:29:30 +00:00
|
|
|
| ^^^^^^^^^^ help: change it to: `y < x`
|
2017-09-17 16:27:40 +00:00
|
|
|
|
2020-08-11 13:14:32 +00:00
|
|
|
error: unnecessary `>= y + 1` or `x - 1 >=`
|
2019-08-18 07:24:30 +00:00
|
|
|
--> $DIR/int_plus_one.rs:12:13
|
2017-09-17 16:27:40 +00:00
|
|
|
|
|
2019-08-18 07:24:30 +00:00
|
|
|
LL | let _ = x - 1 >= y;
|
2019-08-28 05:29:30 +00:00
|
|
|
| ^^^^^^^^^^ help: change it to: `x > y`
|
2017-09-17 16:27:40 +00:00
|
|
|
|
2020-08-11 13:14:32 +00:00
|
|
|
error: unnecessary `>= y + 1` or `x - 1 >=`
|
2019-08-18 07:24:30 +00:00
|
|
|
--> $DIR/int_plus_one.rs:13:13
|
2017-09-17 16:27:40 +00:00
|
|
|
|
|
2019-08-18 07:24:30 +00:00
|
|
|
LL | let _ = y <= x - 1;
|
2019-08-28 05:29:30 +00:00
|
|
|
| ^^^^^^^^^^ help: change it to: `y < x`
|
2017-09-17 16:27:40 +00:00
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|