mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
100 lines
2.5 KiB
Text
100 lines
2.5 KiB
Text
error: item `PubOne` has a public `len` method but no corresponding `is_empty` method
|
|
--> $DIR/len_zero.rs:10:5
|
|
|
|
|
10 | pub fn len(self: &Self) -> isize {
|
|
| _____^ starting here...
|
|
11 | | 1
|
|
12 | | }
|
|
| |_____^ ...ending here
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/len_zero.rs:4:9
|
|
|
|
|
4 | #![deny(len_without_is_empty, len_zero)]
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: trait `PubTraitsToo` has a `len` method but no `is_empty` method
|
|
--> $DIR/len_zero.rs:32:5
|
|
|
|
|
32 | fn len(self: &Self) -> isize;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: item `HasIsEmpty` has a public `len` method but a private `is_empty` method
|
|
--> $DIR/len_zero.rs:66:5
|
|
|
|
|
66 | pub fn len(self: &Self) -> isize {
|
|
| _____^ starting here...
|
|
67 | | 1
|
|
68 | | }
|
|
| |_____^ ...ending here
|
|
|
|
error: item `HasWrongIsEmpty` has a public `len` method but no corresponding `is_empty` method
|
|
--> $DIR/len_zero.rs:95:5
|
|
|
|
|
95 | pub fn len(self: &Self) -> isize {
|
|
| _____^ starting here...
|
|
96 | | 1
|
|
97 | | }
|
|
| |_____^ ...ending here
|
|
|
|
error: length comparison to zero
|
|
--> $DIR/len_zero.rs:106:8
|
|
|
|
|
106 | if x.len() == 0 {
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/len_zero.rs:4:31
|
|
|
|
|
4 | #![deny(len_without_is_empty, len_zero)]
|
|
| ^^^^^^^^
|
|
help: consider using `is_empty`
|
|
| if x.is_empty() {
|
|
|
|
error: length comparison to zero
|
|
--> $DIR/len_zero.rs:113:8
|
|
|
|
|
113 | if "".len() == 0 {
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
help: consider using `is_empty`
|
|
| if "".is_empty() {
|
|
|
|
error: length comparison to zero
|
|
--> $DIR/len_zero.rs:130:8
|
|
|
|
|
130 | if has_is_empty.len() == 0 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: consider using `is_empty`
|
|
| if has_is_empty.is_empty() {
|
|
|
|
error: length comparison to zero
|
|
--> $DIR/len_zero.rs:136:8
|
|
|
|
|
136 | if has_is_empty.len() != 0 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: consider using `is_empty`
|
|
| if !has_is_empty.is_empty() {
|
|
|
|
error: length comparison to zero
|
|
--> $DIR/len_zero.rs:142:8
|
|
|
|
|
142 | if has_is_empty.len() > 0 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: consider using `is_empty`
|
|
| if !has_is_empty.is_empty() {
|
|
|
|
error: length comparison to zero
|
|
--> $DIR/len_zero.rs:151:8
|
|
|
|
|
151 | if with_is_empty.len() == 0 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: consider using `is_empty`
|
|
| if with_is_empty.is_empty() {
|
|
|
|
error: aborting due to 10 previous errors
|
|
|