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.
5 lines
66 B
Swift
5 lines
66 B
Swift
public enum Horse {
|
|
@available(macOS 50, *)
|
|
case kevin(Int)
|
|
}
|