blob: 53ecd04b9d6f5fdcf960c299c057d6d81d93d316 [file] [log] [blame]
// RUN: %target-swift-emit-silgen -verify %s
public protocol A {
@_borrowed
subscript() -> Int { get }
}
protocol B: A { }
extension B {
public subscript() -> Int { return 0 }
}
public struct S: B {
}