Files
swift-mirror/test/Reflection/Inputs/Extensions.swift
David Farler ff67f7f6af [GenReflection] Emit associated type reflection metadata via extensions
Don't leave behind conformances gotten through extensions when
emitting associated type reflection metadata.
2016-04-15 17:48:27 -07:00

7 lines
110 B
Swift

extension S : P4 {
public typealias Result = Int
public func getResult() -> Result {
return 888
}
}