mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
8 lines
172 B
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) {}
|