mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
10.50 was once greater than any real macOS version, but now it compares less than real released versions, which makes these tests depend on the deployment target unnecessarily. Update these tests to use even larger numbers to hopefully keep them independent a little longer.
11 lines
271 B
Swift
11 lines
271 B
Swift
import pre_specialized_module
|
|
|
|
@frozen
|
|
public struct SomeOtherData {
|
|
public init() {}
|
|
}
|
|
|
|
@_specialize(exported: true, target: publicPrespecialized2(_:), availability: macOS 50, *; where T == SomeOtherData)
|
|
public func pre_specialize_publicPrespecialized<T>(_ t: T) {
|
|
}
|