summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/len_zero.stderr
blob: b6f13780253c2e526533179cc5602c0ff557f68a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
error: length comparison to zero
  --> $DIR/len_zero.rs:84:8
   |
LL |     if x.len() == 0 {
   |        ^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `x.is_empty()`
   |
   = note: `-D clippy::len-zero` implied by `-D warnings`

error: length comparison to zero
  --> $DIR/len_zero.rs:88:8
   |
LL |     if "".len() == 0 {}
   |        ^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `"".is_empty()`

error: comparison to empty slice
  --> $DIR/len_zero.rs:97:20
   |
LL |     println!("{}", *s1 == "");
   |                    ^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `s1.is_empty()`
   |
   = note: `-D clippy::comparison-to-empty` implied by `-D warnings`

error: comparison to empty slice
  --> $DIR/len_zero.rs:98:20
   |
LL |     println!("{}", **s2 == "");
   |                    ^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `s2.is_empty()`

error: comparison to empty slice
  --> $DIR/len_zero.rs:99:20
   |
LL |     println!("{}", ***s3 == "");
   |                    ^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `s3.is_empty()`

error: comparison to empty slice
  --> $DIR/len_zero.rs:100:20
   |
LL |     println!("{}", ****s4 == "");
   |                    ^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `s4.is_empty()`

error: comparison to empty slice
  --> $DIR/len_zero.rs:101:20
   |
LL |     println!("{}", *****s5 == "");
   |                    ^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `s5.is_empty()`

error: comparison to empty slice
  --> $DIR/len_zero.rs:102:20
   |
LL |     println!("{}", ******(s6) == "");
   |                    ^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `(s6).is_empty()`

error: comparison to empty slice
  --> $DIR/len_zero.rs:105:20
   |
LL |     println!("{}", &**d2s == "");
   |                    ^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `(**d2s).is_empty()`

error: length comparison to zero
  --> $DIR/len_zero.rs:120:8
   |
LL |     if has_is_empty.len() == 0 {
   |        ^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `has_is_empty.is_empty()`

error: length comparison to zero
  --> $DIR/len_zero.rs:123:8
   |
LL |     if has_is_empty.len() != 0 {
   |        ^^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`

error: length comparison to zero
  --> $DIR/len_zero.rs:126:8
   |
LL |     if has_is_empty.len() > 0 {
   |        ^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`

error: length comparison to one
  --> $DIR/len_zero.rs:129:8
   |
LL |     if has_is_empty.len() < 1 {
   |        ^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `has_is_empty.is_empty()`

error: length comparison to one
  --> $DIR/len_zero.rs:132:8
   |
LL |     if has_is_empty.len() >= 1 {
   |        ^^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`

error: length comparison to zero
  --> $DIR/len_zero.rs:143:8
   |
LL |     if 0 == has_is_empty.len() {
   |        ^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `has_is_empty.is_empty()`

error: length comparison to zero
  --> $DIR/len_zero.rs:146:8
   |
LL |     if 0 != has_is_empty.len() {
   |        ^^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`

error: length comparison to zero
  --> $DIR/len_zero.rs:149:8
   |
LL |     if 0 < has_is_empty.len() {
   |        ^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`

error: length comparison to one
  --> $DIR/len_zero.rs:152:8
   |
LL |     if 1 <= has_is_empty.len() {
   |        ^^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`

error: length comparison to one
  --> $DIR/len_zero.rs:155:8
   |
LL |     if 1 > has_is_empty.len() {
   |        ^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `has_is_empty.is_empty()`

error: length comparison to zero
  --> $DIR/len_zero.rs:169:8
   |
LL |     if with_is_empty.len() == 0 {
   |        ^^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `with_is_empty.is_empty()`

error: length comparison to zero
  --> $DIR/len_zero.rs:182:8
   |
LL |     if b.len() != 0 {}
   |        ^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!b.is_empty()`

error: aborting due to 21 previous errors