blob: 165e6b0d98e02518a51d2b872ec74a52e9b287dc [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)
}