summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unused_self.stderr
blob: 23186122a9af7ef5dd4247c6df02e97438767aa8 (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
error: unused `self` argument
  --> $DIR/unused_self.rs:11:29
   |
LL |         fn unused_self_move(self) {}
   |                             ^^^^
   |
   = help: consider refactoring to a associated function
   = note: `-D clippy::unused-self` implied by `-D warnings`

error: unused `self` argument
  --> $DIR/unused_self.rs:12:28
   |
LL |         fn unused_self_ref(&self) {}
   |                            ^^^^^
   |
   = help: consider refactoring to a associated function

error: unused `self` argument
  --> $DIR/unused_self.rs:13:32
   |
LL |         fn unused_self_mut_ref(&mut self) {}
   |                                ^^^^^^^^^
   |
   = help: consider refactoring to a associated function

error: unused `self` argument
  --> $DIR/unused_self.rs:14:32
   |
LL |         fn unused_self_pin_ref(self: Pin<&Self>) {}
   |                                ^^^^
   |
   = help: consider refactoring to a associated function

error: unused `self` argument
  --> $DIR/unused_self.rs:15:36
   |
LL |         fn unused_self_pin_mut_ref(self: Pin<&mut Self>) {}
   |                                    ^^^^
   |
   = help: consider refactoring to a associated function

error: unused `self` argument
  --> $DIR/unused_self.rs:16:35
   |
LL |         fn unused_self_pin_nested(self: Pin<Arc<Self>>) {}
   |                                   ^^^^
   |
   = help: consider refactoring to a associated function

error: unused `self` argument
  --> $DIR/unused_self.rs:17:28
   |
LL |         fn unused_self_box(self: Box<Self>) {}
   |                            ^^^^
   |
   = help: consider refactoring to a associated function

error: unused `self` argument
  --> $DIR/unused_self.rs:18:40
   |
LL |         fn unused_with_other_used_args(&self, x: u8, y: u8) -> u8 {
   |                                        ^^^^^
   |
   = help: consider refactoring to a associated function

error: unused `self` argument
  --> $DIR/unused_self.rs:21:37
   |
LL |         fn unused_self_class_method(&self) {
   |                                     ^^^^^
   |
   = help: consider refactoring to a associated function

error: aborting due to 9 previous errors