blob: b1183bd3faab71470043399333a7d5fce6876f23 [file] [log] [blame]
// RUN: %target-swift-frontend %s -emit-ir
protocol P3 {
associatedtype T
}
class C : P3 {
typealias T = Int
}
func superclassConformance1<T>(t: T.T) where T : P3, T : C {}