blob: 2104a067e2370532523b9645f8d0024fd13b8689 [file] [log] [blame]
@_versioned
protocol Proto {
func confx()
}
public struct MyStruct : Proto {
func confx() {
}
public init() {
}
}
@inline(never)
@_versioned
func callit(_ p: Proto) {
}
@_transparent
public func testit(_ n: MyStruct) {
callit(n)
}