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

8 lines
172 B
Swift

public func someFunc<T>(_ t: T) {
print(t)
}
@_specialize(exported: true, target: someFunc(_:), where T == Int)
@usableFromInline
func __specialize_someFunc<T>(_: T) {}