]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/wrong_self_convention.stderr
New upstream version 1.23.0+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / wrong_self_convention.stderr
CommitLineData
ea8adc8c
XL
1error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
2 --> $DIR/wrong_self_convention.rs:21:17
3 |
421 | fn from_i32(self) {}
5 | ^^^^
6 |
7 = note: `-D wrong-self-convention` implied by `-D warnings`
8
9error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
10 --> $DIR/wrong_self_convention.rs:27:21
11 |
1227 | pub fn from_i64(self) {}
13 | ^^^^
14
15error: 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:40:15
17 |
1840 | fn as_i32(self) {}
19 | ^^^^
20
21error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
22 --> $DIR/wrong_self_convention.rs:42:17
23 |
2442 | fn into_i32(&self) {}
25 | ^^^^^
26
27error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name
28 --> $DIR/wrong_self_convention.rs:44:15
29 |
3044 | fn is_i32(self) {}
31 | ^^^^
32
33error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
34 --> $DIR/wrong_self_convention.rs:46:15
35 |
3646 | fn to_i32(self) {}
37 | ^^^^
38
39error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
40 --> $DIR/wrong_self_convention.rs:48:17
41 |
4248 | fn from_i32(self) {}
43 | ^^^^
44
45error: 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:50:19
47 |
4850 | pub fn as_i64(self) {}
49 | ^^^^
50
51error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
52 --> $DIR/wrong_self_convention.rs:51:21
53 |
5451 | pub fn into_i64(&self) {}
55 | ^^^^^
56
57error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name
58 --> $DIR/wrong_self_convention.rs:52:19
59 |
6052 | pub fn is_i64(self) {}
61 | ^^^^
62
63error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
64 --> $DIR/wrong_self_convention.rs:53:19
65 |
6653 | pub fn to_i64(self) {}
67 | ^^^^
68
69error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
70 --> $DIR/wrong_self_convention.rs:54:21
71 |
7254 | pub fn from_i64(self) {}
73 | ^^^^
74