blob: 53cdf47ad07ffc8b7c885401a7f5e3b87873c5cf [file] [log] [blame]
// RUN: %target-swift-frontend %s -typecheck
protocol P {
associatedtype A
}
struct S : P {
typealias A = Gen<S>
}
struct Gen<T: P> {}