error[E0599]: the method `f` exists for struct `S`, but its trait bounds were not satisfied --> $DIR/method-unsatified-assoc-type-predicate.rs:26:7 | LL | struct S; | --------- | | | method `f` not found for this | doesn't satisfy `::Y = i32` | doesn't satisfy `S: M` ... LL | a.f(); | ^ method cannot be called on `S` due to unsatisfied trait bounds | = note: the following trait bounds were not satisfied: `::Y = i32` which is required by `S: M` error: aborting due to previous error For more information about this error, try `rustc --explain E0599`.