// RUN: %target-swift-frontend %s -emit-ir // https://github.com/apple/swift/issues/46442 protocol P3 { associatedtype T } class C : P3 { typealias T = Int } func superclassConformance1(_: T, t: T.T) where T : P3, T : C {}