Files
swift-mirror/test/SILOptimizer/Inputs/TestModule.swift

22 lines
240 B
Swift

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)
}