rust/tests/ui/len_zero.stderr

141 lines
4.4 KiB
Plaintext
Raw Normal View History

error: item `PubOne` has a public `len` method but no corresponding `is_empty` method
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:15:1
|
2018-12-09 23:27:19 -06:00
15 | / impl PubOne {
16 | | pub fn len(self: &Self) -> isize {
17 | | 1
18 | | }
19 | | }
| |_^
|
= note: `-D clippy::len-without-is-empty` implied by `-D warnings`
error: trait `PubTraitsToo` has a `len` method but no (possibly inherited) `is_empty` method
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:64:1
|
2018-12-09 23:27:19 -06:00
64 | / pub trait PubTraitsToo {
65 | | fn len(self: &Self) -> isize;
66 | | }
| |_^
error: item `HasIsEmpty` has a public `len` method but a private `is_empty` method
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:98:1
2018-10-06 11:18:06 -05:00
|
2018-12-09 23:27:19 -06:00
98 | / impl HasIsEmpty {
99 | | pub fn len(self: &Self) -> isize {
100 | | 1
101 | | }
2018-10-06 11:18:06 -05:00
... |
2018-12-09 23:27:19 -06:00
105 | | }
106 | | }
2018-10-06 11:18:06 -05:00
| |_^
error: item `HasWrongIsEmpty` has a public `len` method but no corresponding `is_empty` method
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:127:1
|
2018-12-09 23:27:19 -06:00
127 | / impl HasWrongIsEmpty {
128 | | pub fn len(self: &Self) -> isize {
129 | | 1
130 | | }
... |
2018-12-09 23:27:19 -06:00
134 | | }
135 | | }
| |_^
error: length comparison to zero
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:148:8
|
2018-12-09 23:27:19 -06:00
148 | 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
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:152:8
|
2018-12-09 23:27:19 -06:00
152 | if "".len() == 0 {}
| ^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `"".is_empty()`
error: length comparison to zero
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:167:8
|
2018-12-09 23:27:19 -06:00
167 | 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
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:170:8
|
2018-12-09 23:27:19 -06:00
170 | 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
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:173:8
|
2018-12-09 23:27:19 -06:00
173 | 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
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:176:8
|
2018-12-09 23:27:19 -06:00
176 | 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
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:179:8
|
2018-12-09 23:27:19 -06:00
179 | 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
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:190:8
|
2018-12-09 23:27:19 -06:00
190 | 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
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:193:8
|
2018-12-09 23:27:19 -06:00
193 | 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
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:196:8
|
2018-12-09 23:27:19 -06:00
196 | 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
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:199:8
|
2018-12-09 23:27:19 -06:00
199 | 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
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:202:8
|
2018-12-09 23:27:19 -06:00
202 | 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
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:216:8
|
2018-12-09 23:27:19 -06:00
216 | if with_is_empty.len() == 0 {
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `with_is_empty.is_empty()`
2017-02-24 21:26:33 -06:00
error: length comparison to zero
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:229:8
2017-02-24 21:26:33 -06:00
|
2018-12-09 23:27:19 -06:00
229 | if b.len() != 0 {}
| ^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `!b.is_empty()`
2017-02-24 21:26:33 -06:00
2017-09-04 10:05:47 -05:00
error: trait `DependsOnFoo` has a `len` method but no (possibly inherited) `is_empty` method
2018-12-09 23:27:19 -06:00
--> $DIR/len_zero.rs:235:1
2017-09-04 10:05:47 -05:00
|
2018-12-09 23:27:19 -06:00
235 | / pub trait DependsOnFoo: Foo {
236 | | fn len(&mut self) -> usize;
237 | | }
2017-09-04 10:05:47 -05:00
| |_^
error: aborting due to 19 previous errors
2018-01-16 10:06:27 -06:00