Files
swift-mirror/test/Reflection/Inputs/Protocols.swift
David Farler 69bb6235fa [Reflection] Serialize associated types for nominal decls
This closes the loop on being able to resolve dependent member types
during remote reflection.
2016-02-12 16:34:28 -08:00

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
}