We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
hasBackdeployedConcurrencyRuntime
1 parent 4c28e82 commit bb36a87Copy full SHA for bb36a87
validation-test/stdlib/ArrayTrapsObjC.swift
@@ -90,7 +90,8 @@ func hasBackdeployedConcurrencyRuntime() -> Bool {
90
//
91
// This makes the two tests below fall back to older, higher-level exclusivity
92
// checks in the stdlib, which will still trap, but with a different message.
93
- if #available(SwiftStdlib 5.5, *) { return false }
+ if #available(SwiftStdlib 5.5, *) { return false } // recent enough production stdlib
94
+ if #available(SwiftStdlib 9999, *) { return false } // dev stdlib
95
return true
96
}
97
0 commit comments