blob: ceafb4f61578b1424c784d4ab3003f55229c486a [file] [log] [blame]
error[E0277]: the trait bound `T: MyHash` is not satisfied
--> $DIR/wf-impl-associated-type-trait.rs:17:5
|
LL | pub struct MySet<T:MyHash> {
| -------------------------- required by `MySet`
...
LL | type Bar = MySet<T>;
| ^^^^^^^^^^^^^^^^^^^^ the trait `MyHash` is not implemented for `T`
|
= help: consider adding a `where T: MyHash` bound
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.