2023-01-02 13:29:56 +00:00
|
|
|
error[E0220]: associated type `Assoc` not found for `V`
|
|
|
|
--> $DIR/issue-96287.rs:7:33
|
|
|
|
|
|
|
|
|
LL | pub type Foo<V> = impl Trait<V::Assoc>;
|
2023-09-29 16:17:22 +00:00
|
|
|
| ^^^^^ there is an associated type `Assoc` in the trait `TraitWithAssoc`
|
2023-09-29 03:16:11 +00:00
|
|
|
|
|
|
|
|
help: consider restricting type parameter `V`
|
|
|
|
|
|
|
|
|
LL | pub type Foo<V: TraitWithAssoc> = impl Trait<V::Assoc>;
|
|
|
|
| ++++++++++++++++
|
2023-01-02 13:29:56 +00:00
|
|
|
|
2023-11-21 16:44:51 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-01-02 13:29:56 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0220`.
|