blob: 104060a99b6ae958a571c0e25cf403e6ea145386 [file] [log] [blame]
// RUN: not %target-swift-frontend -typecheck %s
protocol P {
associatedtype M
}
struct S<M> {}
extension S: P where Self.M == P.M {}