summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/wrong_self_convention2.stderr
blob: 8de10e7be69c03cc3cd47bfcd2ef685db085b73f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error: methods called `from_*` usually take no `self`
  --> $DIR/wrong_self_convention2.rs:54:29
   |
LL |         pub fn from_be_self(self) -> Self {
   |                             ^^^^
   |
   = help: consider choosing a less ambiguous name
   = note: `-D clippy::wrong-self-convention` implied by `-D warnings`

error: methods called `from_*` usually take no `self`
  --> $DIR/wrong_self_convention2.rs:63:25
   |
LL |         fn from_be_self(self) -> Self;
   |                         ^^^^
   |
   = help: consider choosing a less ambiguous name

error: aborting due to 2 previous errors