]> git.lizzy.rs Git - rust.git/blob - tests/ui/double_comparison.stderr
Auto merge of #68717 - petrochenkov:stabexpat, r=varkor
[rust.git] / tests / ui / double_comparison.stderr
1 error: This binary expression can be simplified
2   --> $DIR/double_comparison.rs:6:8
3    |
4 LL |     if x == y || x < y {
5    |        ^^^^^^^^^^^^^^^ help: try: `x <= y`
6    |
7    = note: `-D clippy::double-comparisons` implied by `-D warnings`
8
9 error: This binary expression can be simplified
10   --> $DIR/double_comparison.rs:9:8
11    |
12 LL |     if x < y || x == y {
13    |        ^^^^^^^^^^^^^^^ help: try: `x <= y`
14
15 error: This binary expression can be simplified
16   --> $DIR/double_comparison.rs:12:8
17    |
18 LL |     if x == y || x > y {
19    |        ^^^^^^^^^^^^^^^ help: try: `x >= y`
20
21 error: This binary expression can be simplified
22   --> $DIR/double_comparison.rs:15:8
23    |
24 LL |     if x > y || x == y {
25    |        ^^^^^^^^^^^^^^^ help: try: `x >= y`
26
27 error: This binary expression can be simplified
28   --> $DIR/double_comparison.rs:18:8
29    |
30 LL |     if x < y || x > y {
31    |        ^^^^^^^^^^^^^^ help: try: `x != y`
32
33 error: This binary expression can be simplified
34   --> $DIR/double_comparison.rs:21:8
35    |
36 LL |     if x > y || x < y {
37    |        ^^^^^^^^^^^^^^ help: try: `x != y`
38
39 error: This binary expression can be simplified
40   --> $DIR/double_comparison.rs:24:8
41    |
42 LL |     if x <= y && x >= y {
43    |        ^^^^^^^^^^^^^^^^ help: try: `x == y`
44
45 error: This binary expression can be simplified
46   --> $DIR/double_comparison.rs:27:8
47    |
48 LL |     if x >= y && x <= y {
49    |        ^^^^^^^^^^^^^^^^ help: try: `x == y`
50
51 error: aborting due to 8 previous errors
52