2018-01-30 01:35:35 +00:00
|
|
|
error: This binary expression can be simplified
|
|
|
|
--> $DIR/double_comparison.rs:4:8
|
|
|
|
|
|
|
|
|
4 | if x == y || x < y {
|
|
|
|
| ^^^^^^^^^^^^^^^ help: try: `x <= y`
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::double-comparisons` implied by `-D warnings`
|
2018-01-30 01:35:35 +00:00
|
|
|
|
|
|
|
error: This binary expression can be simplified
|
|
|
|
--> $DIR/double_comparison.rs:7:8
|
|
|
|
|
|
|
|
|
7 | if x < y || x == y {
|
|
|
|
| ^^^^^^^^^^^^^^^ help: try: `x <= y`
|
|
|
|
|
|
|
|
error: This binary expression can be simplified
|
|
|
|
--> $DIR/double_comparison.rs:10:8
|
|
|
|
|
|
|
|
|
10 | if x == y || x > y {
|
|
|
|
| ^^^^^^^^^^^^^^^ help: try: `x >= y`
|
|
|
|
|
|
|
|
error: This binary expression can be simplified
|
|
|
|
--> $DIR/double_comparison.rs:13:8
|
|
|
|
|
|
|
|
|
13 | if x > y || x == y {
|
|
|
|
| ^^^^^^^^^^^^^^^ help: try: `x >= y`
|
|
|
|
|
|
|
|
error: This binary expression can be simplified
|
|
|
|
--> $DIR/double_comparison.rs:16:8
|
|
|
|
|
|
|
|
|
16 | if x < y || x > y {
|
|
|
|
| ^^^^^^^^^^^^^^ help: try: `x != y`
|
|
|
|
|
|
|
|
error: This binary expression can be simplified
|
|
|
|
--> $DIR/double_comparison.rs:19:8
|
|
|
|
|
|
|
|
|
19 | if x > y || x < y {
|
|
|
|
| ^^^^^^^^^^^^^^ help: try: `x != y`
|
|
|
|
|
|
|
|
error: This binary expression can be simplified
|
|
|
|
--> $DIR/double_comparison.rs:22:8
|
|
|
|
|
|
|
|
|
22 | if x <= y && x >= y {
|
|
|
|
| ^^^^^^^^^^^^^^^^ help: try: `x == y`
|
|
|
|
|
|
|
|
error: This binary expression can be simplified
|
|
|
|
--> $DIR/double_comparison.rs:25:8
|
|
|
|
|
|
|
|
|
25 | if x >= y && x <= y {
|
|
|
|
| ^^^^^^^^^^^^^^^^ help: try: `x == y`
|
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
|