mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
c2c73189c8
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
12 lines
459 B
Text
12 lines
459 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 {
|
|
| ^^^^
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
|
= note: `-D clippy::wrong-self-convention` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::wrong_self_convention)]`
|
|
|
|
error: aborting due to 1 previous error
|
|
|