blob: dccadf99d9bbcb501cd8247076032fc6db1a6ae4 [file] [log] [blame]
public protocol A {
static func a()
}
public protocol B : A {
static func b()
}
public struct S { public init() {} }
extension S : A {
public static func a() { }
}
extension S : B {
public static func b() { }
}