]> git.lizzy.rs Git - rust.git/blob - tests/ui/wrong_self_convention.stderr
Auto merge of #6462 - flip1995:roadmap, r=flip1995,llogiq,killercup,Manishearth,oli...
[rust.git] / tests / ui / wrong_self_convention.stderr
1 error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
2   --> $DIR/wrong_self_convention.rs:18:17
3    |
4 LL |     fn from_i32(self) {}
5    |                 ^^^^
6    |
7    = note: `-D clippy::wrong-self-convention` implied by `-D warnings`
8
9 error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
10   --> $DIR/wrong_self_convention.rs:24:21
11    |
12 LL |     pub fn from_i64(self) {}
13    |                     ^^^^
14
15 error: methods called `as_*` usually take self by reference or self by mutable reference; consider choosing a less ambiguous name
16   --> $DIR/wrong_self_convention.rs:36:15
17    |
18 LL |     fn as_i32(self) {}
19    |               ^^^^
20
21 error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
22   --> $DIR/wrong_self_convention.rs:38:17
23    |
24 LL |     fn into_i32(&self) {}
25    |                 ^^^^^
26
27 error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name
28   --> $DIR/wrong_self_convention.rs:40:15
29    |
30 LL |     fn is_i32(self) {}
31    |               ^^^^
32
33 error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
34   --> $DIR/wrong_self_convention.rs:42:15
35    |
36 LL |     fn to_i32(self) {}
37    |               ^^^^
38
39 error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
40   --> $DIR/wrong_self_convention.rs:44:17
41    |
42 LL |     fn from_i32(self) {}
43    |                 ^^^^
44
45 error: methods called `as_*` usually take self by reference or self by mutable reference; consider choosing a less ambiguous name
46   --> $DIR/wrong_self_convention.rs:46:19
47    |
48 LL |     pub fn as_i64(self) {}
49    |                   ^^^^
50
51 error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
52   --> $DIR/wrong_self_convention.rs:47:21
53    |
54 LL |     pub fn into_i64(&self) {}
55    |                     ^^^^^
56
57 error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name
58   --> $DIR/wrong_self_convention.rs:48:19
59    |
60 LL |     pub fn is_i64(self) {}
61    |                   ^^^^
62
63 error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
64   --> $DIR/wrong_self_convention.rs:49:19
65    |
66 LL |     pub fn to_i64(self) {}
67    |                   ^^^^
68
69 error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
70   --> $DIR/wrong_self_convention.rs:50:21
71    |
72 LL |     pub fn from_i64(self) {}
73    |                     ^^^^
74
75 error: methods called `as_*` usually take self by reference or self by mutable reference; consider choosing a less ambiguous name
76   --> $DIR/wrong_self_convention.rs:95:19
77    |
78 LL |         fn as_i32(self) {}
79    |                   ^^^^
80
81 error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
82   --> $DIR/wrong_self_convention.rs:98:25
83    |
84 LL |         fn into_i32_ref(&self) {}
85    |                         ^^^^^
86
87 error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name
88   --> $DIR/wrong_self_convention.rs:100:19
89    |
90 LL |         fn is_i32(self) {}
91    |                   ^^^^
92
93 error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
94   --> $DIR/wrong_self_convention.rs:102:19
95    |
96 LL |         fn to_i32(self) {}
97    |                   ^^^^
98
99 error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
100   --> $DIR/wrong_self_convention.rs:104:21
101    |
102 LL |         fn from_i32(self) {}
103    |                     ^^^^
104
105 error: methods called `as_*` usually take self by reference or self by mutable reference; consider choosing a less ambiguous name
106   --> $DIR/wrong_self_convention.rs:119:19
107    |
108 LL |         fn as_i32(self);
109    |                   ^^^^
110
111 error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
112   --> $DIR/wrong_self_convention.rs:122:25
113    |
114 LL |         fn into_i32_ref(&self);
115    |                         ^^^^^
116
117 error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name
118   --> $DIR/wrong_self_convention.rs:124:19
119    |
120 LL |         fn is_i32(self);
121    |                   ^^^^
122
123 error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
124   --> $DIR/wrong_self_convention.rs:126:19
125    |
126 LL |         fn to_i32(self);
127    |                   ^^^^
128
129 error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
130   --> $DIR/wrong_self_convention.rs:128:21
131    |
132 LL |         fn from_i32(self);
133    |                     ^^^^
134
135 error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
136   --> $DIR/wrong_self_convention.rs:146:25
137    |
138 LL |         fn into_i32_ref(&self);
139    |                         ^^^^^
140
141 error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
142   --> $DIR/wrong_self_convention.rs:152:21
143    |
144 LL |         fn from_i32(self);
145    |                     ^^^^
146
147 error: aborting due to 24 previous errors
148