blob: b267e6a7544922e1ed03bc1cd3a9cc0c3e98e523 [file] [log] [blame]
error[E0220]: associated type `Assoc` not found for `V`
--> $DIR/not_well_formed.rs:11:29
|
LL | type Foo<V> = impl Trait<V::Assoc>;
| ^^^^^ there is an associated type `Assoc` in the trait `TraitWithAssoc`
|
help: consider restricting type parameter `V`
|
LL | type Foo<V: TraitWithAssoc> = impl Trait<V::Assoc>;
| ++++++++++++++++
error: aborting due to previous error
For more information about this error, try `rustc --explain E0220`.