]> git.lizzy.rs Git - rust.git/blob - clippy_tests/examples/wrong_self_convention.stderr
Fix the test suite after cargo update
[rust.git] / clippy_tests / examples / wrong_self_convention.stderr
1 error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
2   --> wrong_self_convention.rs:21:17
3    |
4 21 |     fn from_i32(self) {}
5    |                 ^^^^
6    |
7    = note: `-D wrong-self-convention` implied by `-D warnings`
8
9 error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
10   --> wrong_self_convention.rs:27:21
11    |
12 27 |     pub fn from_i64(self) {}
13    |                     ^^^^
14    |
15    = note: `-D wrong-self-convention` implied by `-D warnings`
16
17 error: methods called `as_*` usually take self by reference or self by mutable reference; consider choosing a less ambiguous name
18   --> wrong_self_convention.rs:40:15
19    |
20 40 |     fn as_i32(self) {}
21    |               ^^^^
22    |
23    = note: `-D wrong-self-convention` implied by `-D warnings`
24
25 error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
26   --> wrong_self_convention.rs:42:17
27    |
28 42 |     fn into_i32(&self) {}
29    |                 ^^^^^
30    |
31    = note: `-D wrong-self-convention` implied by `-D warnings`
32
33 error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name
34   --> wrong_self_convention.rs:44:15
35    |
36 44 |     fn is_i32(self) {}
37    |               ^^^^
38    |
39    = note: `-D wrong-self-convention` implied by `-D warnings`
40
41 error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
42   --> wrong_self_convention.rs:46:15
43    |
44 46 |     fn to_i32(self) {}
45    |               ^^^^
46    |
47    = note: `-D wrong-self-convention` implied by `-D warnings`
48
49 error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
50   --> wrong_self_convention.rs:48:17
51    |
52 48 |     fn from_i32(self) {}
53    |                 ^^^^
54    |
55    = note: `-D wrong-self-convention` implied by `-D warnings`
56
57 error: methods called `as_*` usually take self by reference or self by mutable reference; consider choosing a less ambiguous name
58   --> wrong_self_convention.rs:50:19
59    |
60 50 |     pub fn as_i64(self) {}
61    |                   ^^^^
62    |
63    = note: `-D wrong-self-convention` implied by `-D warnings`
64
65 error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
66   --> wrong_self_convention.rs:51:21
67    |
68 51 |     pub fn into_i64(&self) {}
69    |                     ^^^^^
70    |
71    = note: `-D wrong-self-convention` implied by `-D warnings`
72
73 error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name
74   --> wrong_self_convention.rs:52:19
75    |
76 52 |     pub fn is_i64(self) {}
77    |                   ^^^^
78    |
79    = note: `-D wrong-self-convention` implied by `-D warnings`
80
81 error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
82   --> wrong_self_convention.rs:53:19
83    |
84 53 |     pub fn to_i64(self) {}
85    |                   ^^^^
86    |
87    = note: `-D wrong-self-convention` implied by `-D warnings`
88
89 error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
90   --> wrong_self_convention.rs:54:21
91    |
92 54 |     pub fn from_i64(self) {}
93    |                     ^^^^
94    |
95    = note: `-D wrong-self-convention` implied by `-D warnings`
96
97 error: aborting due to previous error(s)
98
99
100 To learn more, run the command again with --verbose.