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

22 lines
236 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)
}