mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
24 lines
821 B
Text
24 lines
821 B
Text
error: implementation of inherent method `to_string(&self) -> String` for type `A`
|
|
--> $DIR/inherent_to_string.rs:22:5
|
|
|
|
|
LL | / fn to_string(&self) -> String {
|
|
LL | | "A.to_string()".to_string()
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
= help: implement trait `Display` for type `A` instead
|
|
= note: `-D clippy::inherent-to-string` implied by `-D warnings`
|
|
|
|
error: type `C` implements inherent method `to_string(&self) -> String` which shadows the implementation of `Display`
|
|
--> $DIR/inherent_to_string.rs:46:5
|
|
|
|
|
LL | / fn to_string(&self) -> String {
|
|
LL | | "C.to_string()".to_string()
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
= help: remove the inherent method from type `C`
|
|
= note: `#[deny(clippy::inherent_to_string_shadow_display)]` on by default
|
|
|
|
error: aborting due to 2 previous errors
|
|
|