rust/tests/ui/len_zero.stderr

141 lines
4.3 KiB
Text
Raw Normal View History

error: item `PubOne` has a public `len` method but no corresponding `is_empty` method
2018-12-10 06:27:19 +01:00
--> $DIR/len_zero.rs:15:1
|
2018-12-27 16:57:55 +01:00
LL | / impl PubOne {
LL | | pub fn len(self: &Self) -> isize {
LL | | 1
LL | | }
LL | | }
| |_^
|
= 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-10 06:27:19 +01:00
--> $DIR/len_zero.rs:64:1
|
2018-12-27 16:57:55 +01:00
LL | / pub trait PubTraitsToo {
LL | | fn len(self: &Self) -> isize;
LL | | }
| |_^
error: item `HasIsEmpty` has a public `len` method but a private `is_empty` method
2018-12-27 16:57:55 +01:00
--> $DIR/len_zero.rs:98:1
|
LL | / impl HasIsEmpty {
LL | | pub fn len(self: &Self) -> isize {
LL | | 1
LL | | }
... |
LL | | }
LL | | }
| |_^
error: item `HasWrongIsEmpty` has a public `len` method but no corresponding `is_empty` method
2018-12-27 16:57:55 +01:00
--> $DIR/len_zero.rs:127:1
|
LL | / impl HasWrongIsEmpty {
LL | | pub fn len(self: &Self) -> isize {
LL | | 1
LL | | }
... |
LL | | }
LL | | }
| |_^
error: length comparison to zero
2018-12-27 16:57:55 +01:00
--> $DIR/len_zero.rs:148: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
2018-12-27 16:57:55 +01:00
--> $DIR/len_zero.rs:152:8
|
LL | if "".len() == 0 {}
| ^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `"".is_empty()`
error: length comparison to zero
2018-12-27 16:57:55 +01:00
--> $DIR/len_zero.rs:167: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
2018-12-27 16:57:55 +01:00
--> $DIR/len_zero.rs:170: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
2018-12-27 16:57:55 +01:00
--> $DIR/len_zero.rs:173: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
2018-12-27 16:57:55 +01:00
--> $DIR/len_zero.rs:176: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
2018-12-27 16:57:55 +01:00
--> $DIR/len_zero.rs:179: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
2018-12-27 16:57:55 +01:00
--> $DIR/len_zero.rs:190: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
2018-12-27 16:57:55 +01:00
--> $DIR/len_zero.rs:193: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
2018-12-27 16:57:55 +01:00
--> $DIR/len_zero.rs:196: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
2018-12-27 16:57:55 +01:00
--> $DIR/len_zero.rs:199: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
2018-12-27 16:57:55 +01:00
--> $DIR/len_zero.rs:202: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
2018-12-27 16:57:55 +01:00
--> $DIR/len_zero.rs:216:8
|
LL | if with_is_empty.len() == 0 {
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `with_is_empty.is_empty()`
2017-02-25 04:26:33 +01:00
error: length comparison to zero
2018-12-27 16:57:55 +01:00
--> $DIR/len_zero.rs:229:8
|
LL | if b.len() != 0 {}
| ^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `!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-12-27 16:57:55 +01:00
--> $DIR/len_zero.rs:235:1
|
LL | / pub trait DependsOnFoo: Foo {
LL | | fn len(&mut self) -> usize;
LL | | }
| |_^
2017-09-04 17:05:47 +02:00
error: aborting due to 19 previous errors
2018-01-16 17:06:27 +01:00