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.
1 parent 85250c7 commit 4e3c1eaCopy full SHA for 4e3c1ea
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