blob: 72141495ff85fc548f0a66952ed34a8d81ffd282 [file] [log] [blame]
// RUN: %target-swift-frontend %s -typecheck
public protocol P1 {
associatedtype A1
}
public protocol P2 : P1 {
associatedtype A2 : P1
var prop1: A2 { get }
}
extension P2 {
public typealias A1 = A2
}