blob: 5e454ddb1471ed20edebd2347d09a47f0de61a9b [file] [log] [blame]
public struct Y {}
public protocol P {
func doSomething() -> Y
}
public struct X : P {
public func doSomething() -> Y {
return Y()
}
public init() {}
}