mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
14 lines
190 B
Swift
14 lines
190 B
Swift
// RUN: %target-swift-frontend %s -typecheck
|
|
|
|
// https://github.com/apple/swift/issues/46066
|
|
|
|
protocol P {
|
|
associatedtype A
|
|
}
|
|
|
|
struct S : P {
|
|
typealias A = Gen<S>
|
|
}
|
|
|
|
struct Gen<T: P> {}
|