summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/len_without_is_empty.stderr
blob: a1f48f7610b44857edf7f6f8f9e6dbbc520c1a0d (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
error: struct `PubOne` has a public `len` method, but no `is_empty` method
  --> $DIR/len_without_is_empty.rs:7:5
   |
LL |     pub fn len(&self) -> isize {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = 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
  --> $DIR/len_without_is_empty.rs:55:1
   |
LL | / pub trait PubTraitsToo {
LL | |     fn len(&self) -> isize;
LL | | }
   | |_^

error: struct `HasIsEmpty` has a public `len` method, but a private `is_empty` method
  --> $DIR/len_without_is_empty.rs:68:5
   |
LL |     pub fn len(&self) -> isize {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
note: `is_empty` defined here
  --> $DIR/len_without_is_empty.rs:72:5
   |
LL |     fn is_empty(&self) -> bool {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^

error: struct `HasWrongIsEmpty` has a public `len` method, but the `is_empty` method has an unexpected signature
  --> $DIR/len_without_is_empty.rs:80:5
   |
LL |     pub fn len(&self) -> isize {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
note: `is_empty` defined here
  --> $DIR/len_without_is_empty.rs:84:5
   |
LL |     pub fn is_empty(&self, x: u32) -> bool {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   = note: expected signature: `(&self) -> bool`

error: struct `MismatchedSelf` has a public `len` method, but the `is_empty` method has an unexpected signature
  --> $DIR/len_without_is_empty.rs:92:5
   |
LL |     pub fn len(self) -> isize {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^
   |
note: `is_empty` defined here
  --> $DIR/len_without_is_empty.rs:96:5
   |
LL |     pub fn is_empty(&self) -> bool {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   = note: expected signature: `(self) -> bool`

error: trait `DependsOnFoo` has a `len` method but no (possibly inherited) `is_empty` method
  --> $DIR/len_without_is_empty.rs:171:1
   |
LL | / pub trait DependsOnFoo: Foo {
LL | |     fn len(&mut self) -> usize;
LL | | }
   | |_^

error: struct `OptionalLen3` has a public `len` method, but the `is_empty` method has an unexpected signature
  --> $DIR/len_without_is_empty.rs:216:5
   |
LL |     pub fn len(&self) -> usize {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
note: `is_empty` defined here
  --> $DIR/len_without_is_empty.rs:221:5
   |
LL |     pub fn is_empty(&self) -> Option<bool> {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   = note: expected signature: `(&self) -> bool`

error: struct `ResultLen` has a public `len` method, but the `is_empty` method has an unexpected signature
  --> $DIR/len_without_is_empty.rs:228:5
   |
LL |     pub fn len(&self) -> Result<usize, ()> {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
note: `is_empty` defined here
  --> $DIR/len_without_is_empty.rs:233:5
   |
LL |     pub fn is_empty(&self) -> Option<bool> {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   = note: expected signature: `(&self) -> bool` or `(&self) -> Result<bool>

error: this returns a `Result<_, ()>`
  --> $DIR/len_without_is_empty.rs:228:5
   |
LL |     pub fn len(&self) -> Result<usize, ()> {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::result-unit-err` implied by `-D warnings`
   = help: use a custom `Error` type instead

error: this returns a `Result<_, ()>`
  --> $DIR/len_without_is_empty.rs:240:5
   |
LL |     pub fn len(&self) -> Result<usize, ()> {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use a custom `Error` type instead

error: this returns a `Result<_, ()>`
  --> $DIR/len_without_is_empty.rs:244:5
   |
LL |     pub fn is_empty(&self) -> Result<bool, ()> {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use a custom `Error` type instead

error: this returns a `Result<_, ()>`
  --> $DIR/len_without_is_empty.rs:251:5
   |
LL |     pub fn len(&self) -> Result<usize, ()> {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use a custom `Error` type instead

error: aborting due to 12 previous errors