rust-clippy/tests/ui/int_plus_one.stderr

29 lines
780 B
Text
Raw Normal View History

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;
| ^^^^^^^^^^ help: change it to: `x > y`
2017-09-17 16:27:40 +00:00
|
= note: `-D clippy::int-plus-one` implied by `-D warnings`
2017-09-17 16:27:40 +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;
| ^^^^^^^^^^ help: change it to: `y < x`
2017-09-17 16:27:40 +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;
| ^^^^^^^^^^ help: change it to: `x > y`
2017-09-17 16:27:40 +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;
| ^^^^^^^^^^ 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