Files
swift-mirror/test/IRGen/Inputs/sil_witness_tables_external_input.swift
2014-07-08 02:17:49 +00:00

14 lines
167 B
Swift

public struct Y {}
public protocol P {
func doSomething() -> Y
}
public struct X : P {
public func doSomething() -> Y {
return Y()
}
public init() {}
}