rust/tests/ui/len_zero.stderr

141 lines
4.2 KiB
Plaintext
Raw Normal View History

error: item `PubOne` has a public `len` method but no corresponding `is_empty` method
2018-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:18:1
|
2018-10-06 18:18:06 +02:00
18 | / impl PubOne {
19 | | pub fn len(self: &Self) -> isize {
20 | | 1
21 | | }
22 | | }
| |_^
|
= 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-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:67:1
|
2018-10-06 18:18:06 +02:00
67 | / pub trait PubTraitsToo {
68 | | fn len(self: &Self) -> isize;
69 | | }
| |_^
error: item `HasIsEmpty` has a public `len` method but a private `is_empty` method
2018-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:101:1
|
101 | / impl HasIsEmpty {
102 | | pub fn len(self: &Self) -> isize {
103 | | 1
104 | | }
... |
108 | | }
109 | | }
| |_^
error: item `HasWrongIsEmpty` has a public `len` method but no corresponding `is_empty` method
2018-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:130:1
|
2018-10-06 18:18:06 +02:00
130 | / impl HasWrongIsEmpty {
131 | | pub fn len(self: &Self) -> isize {
132 | | 1
133 | | }
... |
2018-10-06 18:18:06 +02:00
137 | | }
138 | | }
| |_^
error: length comparison to zero
2018-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:151:8
|
2018-10-06 18:18:06 +02:00
151 | if x.len() == 0 {
2017-07-24 16:28:41 +02:00
| ^^^^^^^^^^^^ help: using `is_empty` is more concise: `x.is_empty()`
|
= note: `-D clippy::len-zero` implied by `-D warnings`
error: length comparison to zero
2018-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:155:8
|
2018-10-06 18:18:06 +02:00
155 | if "".len() == 0 {}
2017-07-24 16:28:41 +02:00
| ^^^^^^^^^^^^^ help: using `is_empty` is more concise: `"".is_empty()`
error: length comparison to zero
2018-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:170:8
|
2018-10-06 18:18:06 +02:00
170 | if has_is_empty.len() == 0 {
2017-07-24 16:28:41 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is more concise: `has_is_empty.is_empty()`
error: length comparison to zero
2018-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:173:8
|
2018-10-06 18:18:06 +02:00
173 | if has_is_empty.len() != 0 {
2017-07-24 16:28:41 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is more concise: `!has_is_empty.is_empty()`
error: length comparison to zero
2018-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:176:8
|
2018-10-06 18:18:06 +02:00
176 | if has_is_empty.len() > 0 {
2017-07-24 16:28:41 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is more concise: `!has_is_empty.is_empty()`
error: length comparison to one
2018-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:179:8
|
2018-10-06 18:18:06 +02:00
179 | if has_is_empty.len() < 1 {
| ^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is more concise: `has_is_empty.is_empty()`
error: length comparison to one
2018-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:182:8
|
2018-10-06 18:18:06 +02:00
182 | if has_is_empty.len() >= 1 {
| ^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is more concise: `!has_is_empty.is_empty()`
error: length comparison to zero
2018-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:193:8
|
2018-10-06 18:18:06 +02:00
193 | if 0 == has_is_empty.len() {
| ^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is more concise: `has_is_empty.is_empty()`
error: length comparison to zero
2018-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:196:8
|
2018-10-06 18:18:06 +02:00
196 | if 0 != has_is_empty.len() {
| ^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is more concise: `!has_is_empty.is_empty()`
error: length comparison to zero
2018-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:199:8
|
2018-10-06 18:18:06 +02:00
199 | if 0 < has_is_empty.len() {
| ^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is more concise: `!has_is_empty.is_empty()`
error: length comparison to one
2018-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:202:8
|
2018-10-06 18:18:06 +02:00
202 | if 1 <= has_is_empty.len() {
| ^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is more concise: `!has_is_empty.is_empty()`
error: length comparison to one
2018-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:205:8
|
2018-10-06 18:18:06 +02:00
205 | if 1 > has_is_empty.len() {
| ^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is more concise: `has_is_empty.is_empty()`
error: length comparison to zero
2018-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:219:8
|
2018-10-06 18:18:06 +02:00
219 | if with_is_empty.len() == 0 {
2017-07-24 16:28:41 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is more concise: `with_is_empty.is_empty()`
2017-02-25 04:26:33 +01:00
error: length comparison to zero
2018-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:232:8
2017-02-25 04:26:33 +01:00
|
2018-10-06 18:18:06 +02:00
232 | if b.len() != 0 {}
2017-07-24 16:28:41 +02:00
| ^^^^^^^^^^^^ help: using `is_empty` is more concise: `!b.is_empty()`
2017-02-25 04:26:33 +01:00
2017-09-04 17:05:47 +02:00
error: trait `DependsOnFoo` has a `len` method but no (possibly inherited) `is_empty` method
2018-10-06 18:18:06 +02:00
--> $DIR/len_zero.rs:238:1
2017-09-04 17:05:47 +02:00
|
2018-10-06 18:18:06 +02:00
238 | / pub trait DependsOnFoo: Foo {
239 | | fn len(&mut self) -> usize;
240 | | }
2017-09-04 17:05:47 +02:00
| |_^
error: aborting due to 19 previous errors
2018-01-16 17:06:27 +01:00