mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
10 lines
182 B
Swift
10 lines
182 B
Swift
// RUN: %target-swift-frontend %s -emit-ir -o /dev/null
|
|
|
|
protocol P {
|
|
associatedtype A
|
|
}
|
|
struct Straint<C: P> where C.A : P {
|
|
typealias X = Any
|
|
}
|
|
protocol Q : Straint<Self>.X {}
|