2019-07-15 16:43:47 +00:00
|
|
|
error: implementation of inherent method `to_string(&self) -> String` for type `A`
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/inherent_to_string.rs:20:5
|
2019-07-06 18:13:38 +00:00
|
|
|
|
|
|
|
|
LL | / fn to_string(&self) -> String {
|
|
|
|
LL | | "A.to_string()".to_string()
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::inherent-to-string` implied by `-D warnings`
|
2019-07-15 16:43:47 +00:00
|
|
|
= help: implement trait `Display` for type `A` instead
|
2019-07-06 18:13:38 +00:00
|
|
|
|
2019-07-15 16:43:47 +00:00
|
|
|
error: type `C` implements inherent method `to_string(&self) -> String` which shadows the implementation of `Display`
|
2021-09-28 17:03:12 +00:00
|
|
|
--> $DIR/inherent_to_string.rs:44:5
|
2019-07-06 18:13:38 +00:00
|
|
|
|
|
|
|
|
LL | / fn to_string(&self) -> String {
|
|
|
|
LL | | "C.to_string()".to_string()
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
2020-01-31 19:21:10 +00:00
|
|
|
note: the lint level is defined here
|
2019-07-15 16:43:47 +00:00
|
|
|
--> $DIR/inherent_to_string.rs:2:9
|
|
|
|
|
|
2019-07-16 16:29:37 +00:00
|
|
|
LL | #![deny(clippy::inherent_to_string_shadow_display)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
= help: remove the inherent method from type `C`
|
2019-07-15 16:43:47 +00:00
|
|
|
|
2019-07-16 16:29:37 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2019-07-06 18:13:38 +00:00
|
|
|
|