2022-07-11 06:53:01 +00:00
|
|
|
error[E0220]: associated type `Baa` not found for `T`
|
2023-09-29 03:16:11 +00:00
|
|
|
--> $DIR/issue-55673.rs:9:8
|
2022-07-11 06:53:01 +00:00
|
|
|
|
|
|
|
|
LL | T::Baa: std::fmt::Debug,
|
|
|
|
| ^^^ there is a similarly named associated type `Bar` in the trait `Foo`
|
2023-09-29 03:16:11 +00:00
|
|
|
|
|
|
|
|
help: change the associated type name to use `Bar` from `Foo`
|
|
|
|
|
|
|
|
|
LL | T::Bar: std::fmt::Debug,
|
|
|
|
| ~~~
|
|
|
|
|
|
|
|
error[E0220]: associated type `Baa` not found for `T`
|
|
|
|
--> $DIR/issue-55673.rs:16:8
|
|
|
|
|
|
|
|
|
LL | T::Baa: std::fmt::Debug,
|
|
|
|
| ^^^ there is a similarly named associated type `Bar` in the trait `Foo`
|
|
|
|
|
|
|
|
|
help: consider further restricting type parameter `T`
|
|
|
|
|
|
|
|
|
LL | T::Baa: std::fmt::Debug, T: Foo
|
|
|
|
| ~~~~~~~~
|
|
|
|
help: and also change the associated type name
|
|
|
|
|
|
|
|
|
LL | T::Bar: std::fmt::Debug,
|
|
|
|
| ~~~
|
2022-07-11 06:53:01 +00:00
|
|
|
|
2023-09-29 03:16:11 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2022-07-11 06:53:01 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0220`.
|