mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This closes the loop on being able to resolve dependent member types during remote reflection.
17 lines
232 B
Swift
17 lines
232 B
Swift
public protocol P1 {
|
|
associatedtype Inner
|
|
}
|
|
|
|
public protocol P2 {
|
|
associatedtype Outer : P1
|
|
}
|
|
|
|
public protocol P3 {
|
|
associatedtype First
|
|
associatedtype Second
|
|
}
|
|
|
|
public protocol ClassBoundP: class {
|
|
associatedtype Inner
|
|
}
|