mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
ff67f7f6af
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
|
|
}
|
|
}
|