mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Don't leave behind conformances gotten through extensions when emitting associated type reflection metadata.
7 lines
110 B
Swift
7 lines
110 B
Swift
extension S : P4 {
|
|
public typealias Result = Int
|
|
public func getResult() -> Result {
|
|
return 888
|
|
}
|
|
}
|