rust-clippy/tests/ui/to_string_trait_impl.stderr

29 lines
801 B
Text
Raw Normal View History

2024-01-10 23:52:20 +00:00
error: direct implementation of `ToString`
2024-02-17 12:16:29 +00:00
--> tests/ui/to_string_trait_impl.rs:11:1
2024-01-10 23:52:20 +00:00
|
LL | / impl ToString for Point {
LL | | fn to_string(&self) -> String {
LL | | format!("({}, {})", self.x, self.y)
LL | | }
LL | | }
| |_^
|
= help: prefer implementing `Display` instead
= note: `-D clippy::to-string-trait-impl` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::to_string_trait_impl)]`
error: direct implementation of `ToString`
2024-02-17 12:16:29 +00:00
--> tests/ui/to_string_trait_impl.rs:56:5
|
LL | / impl ToString for S<i32> {
LL | | fn to_string(&self) -> String {
LL | | todo!()
LL | | }
LL | | }
| |_____^
|
= help: prefer implementing `Display` instead
error: aborting due to 2 previous errors
2024-01-10 23:52:20 +00:00