mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
11 lines
374 B
Text
11 lines
374 B
Text
error: methods called `as_*` usually take `self` by reference or `self` by mutable reference
|
|
--> $DIR/def_id_nocore.rs:27:19
|
|
|
|
|
LL | pub fn as_ref(self) -> &'static str {
|
|
| ^^^^
|
|
|
|
|
= note: `-D clippy::wrong-self-convention` implied by `-D warnings`
|
|
= help: consider choosing a less ambiguous name
|
|
|
|
error: aborting due to previous error
|
|
|