rust/tests/ui/wrong_self_convention.stderr

77 lines
2.6 KiB
Text
Raw Normal View History

error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
2018-12-10 06:27:19 +01:00
--> $DIR/wrong_self_convention.rs:26:17
|
2018-12-27 16:57:55 +01:00
LL | fn from_i32(self) {}
| ^^^^
|
= note: `-D clippy::wrong-self-convention` implied by `-D warnings`
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
2018-12-10 06:27:19 +01:00
--> $DIR/wrong_self_convention.rs:32:21
|
2018-12-27 16:57:55 +01:00
LL | pub fn from_i64(self) {}
| ^^^^
error: methods called `as_*` usually take self by reference or self by mutable reference; consider choosing a less ambiguous name
2018-12-10 06:27:19 +01:00
--> $DIR/wrong_self_convention.rs:44:15
|
2018-12-27 16:57:55 +01:00
LL | fn as_i32(self) {}
| ^^^^
error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
2018-12-10 06:27:19 +01:00
--> $DIR/wrong_self_convention.rs:46:17
|
2018-12-27 16:57:55 +01:00
LL | fn into_i32(&self) {}
| ^^^^^
error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name
2018-12-10 06:27:19 +01:00
--> $DIR/wrong_self_convention.rs:48:15
|
2018-12-27 16:57:55 +01:00
LL | fn is_i32(self) {}
| ^^^^
error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
2018-12-10 06:27:19 +01:00
--> $DIR/wrong_self_convention.rs:50:15
|
2018-12-27 16:57:55 +01:00
LL | fn to_i32(self) {}
| ^^^^
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
2018-12-10 06:27:19 +01:00
--> $DIR/wrong_self_convention.rs:52:17
|
2018-12-27 16:57:55 +01:00
LL | fn from_i32(self) {}
| ^^^^
error: methods called `as_*` usually take self by reference or self by mutable reference; consider choosing a less ambiguous name
2018-12-10 06:27:19 +01:00
--> $DIR/wrong_self_convention.rs:54:19
|
2018-12-27 16:57:55 +01:00
LL | pub fn as_i64(self) {}
| ^^^^
error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
2018-12-10 06:27:19 +01:00
--> $DIR/wrong_self_convention.rs:55:21
|
2018-12-27 16:57:55 +01:00
LL | pub fn into_i64(&self) {}
| ^^^^^
error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name
2018-12-10 06:27:19 +01:00
--> $DIR/wrong_self_convention.rs:56:19
|
2018-12-27 16:57:55 +01:00
LL | pub fn is_i64(self) {}
| ^^^^
error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
2018-12-10 06:27:19 +01:00
--> $DIR/wrong_self_convention.rs:57:19
|
2018-12-27 16:57:55 +01:00
LL | pub fn to_i64(self) {}
| ^^^^
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
2018-12-10 06:27:19 +01:00
--> $DIR/wrong_self_convention.rs:58:21
|
2018-12-27 16:57:55 +01:00
LL | pub fn from_i64(self) {}
| ^^^^
2018-01-16 17:06:27 +01:00
error: aborting due to 12 previous errors