blob: 7ba59202b25567895c2552fc168862bec7d59a93 [file] [log] [blame]
private protocol Proto {
func confx()
}
public struct MyStruct : Proto {
func confx() {
}
public init() {
}
}
@inline(never)
private func callit(p: Proto) {
}
@_transparent
public func testit(n: MyStruct) {
callit(n)
}