]> git.lizzy.rs Git - rust.git/blob - tests/ui/wrong_self_convention.stderr
Auto merge of #68717 - petrochenkov:stabexpat, r=varkor
[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:17: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:23: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:35: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:37: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:39: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:41: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:43: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:45: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:46: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:47: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:48: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:49:21
71    |
72 LL |     pub fn from_i64(self) {}
73    |                     ^^^^
74
75 error: aborting due to 12 previous errors
76