Skip to content

Commit ad1e63f

Browse files
committed
Fix CI failure Constraints/result_builder_pairwise_build_block.swift
This test is failing on earlier platforms. To fix this, we keep the `#available` but drop the platform specifier since this just testing `buildLimitedAvailability(_:)`.
1 parent f0fbb80 commit ad1e63f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Constraints/result_builder_pairwise_build_block.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ let flatValues2 = Values(flat: {
137137
if false {
138138
"nah"
139139
}
140-
if #available(SwiftStdlib 5.0, *) {
140+
if #available(*) {
141141
5.0
142142
}
143143
#endif

0 commit comments

Comments
 (0)