blob: 11fce7c92a36d555086b54a9832f1994e45e2942 [file] [log] [blame]
// RUN: %target-swift-frontend %s -emit-ir -o /dev/null
protocol P {
associatedtype A
}
struct Straint<C: P> where C.A : P {
typealias X = Any
}
protocol Q : Straint<Self>.X {}