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.
2 parents 148d08b + 4e3c1ea commit 544cd88Copy full SHA for 544cd88
validation-test/stdlib/UnsafeBufferPointer.swift.gyb
@@ -429,6 +429,10 @@ UnsafeMutableBufferPointerTestSuite.test("Slice.withContiguousStorageIfAvailable
429
}
430
431
UnsafeMutableRawBufferPointerTestSuite.test("Slice.withContiguousStorageIfAvailable") {
432
+ guard #available(SwiftStdlib 5.7, *) else {
433
+ return
434
+ }
435
+
436
for test in subscriptRangeTests {
437
let c = test.collection.map({ UInt8($0.value/1000) })
438
let buffer = UnsafeMutableRawBufferPointer.allocate(
0 commit comments