blob: c427f51dd23e13790ea639bd6f923ef77b7a2720 [file] [log] [blame]
// RUN: not %target-swift-frontend %s -typecheck
protocol II {
associatedtype E
}
protocol P {
associatedtype I : II
associatedtype X
}
extension P where I.E : P, I.E.X.D == Int, I.E.X == Int {}