Skip to content

Commit 39ca3de

Browse files
authored
Merge pull request #80003 from glessard/span-gardening
[stdlib] fix `Span`'s `Sendable` conformance
2 parents f6c9177 + e81a2ee commit 39ca3de

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

stdlib/public/core/Span/Span.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public struct Span<Element: ~Copyable & ~Escapable>
8484
}
8585

8686
@available(SwiftStdlib 6.2, *)
87-
extension Span: @unchecked Sendable where Element: Sendable {}
87+
extension Span: @unchecked Sendable where Element: Sendable & ~Copyable {}
8888

8989
@available(SwiftStdlib 6.2, *)
9090
extension Span where Element: ~Copyable {

test/stdlib/Span/SpanTests.swift

+17
Original file line numberDiff line numberDiff line change
@@ -589,3 +589,20 @@ suite.test("initialize from raw memory")
589589
let first = test(span)
590590
expectEqual(first, 0x07060504)
591591
}
592+
593+
private func send(_: some Sendable & ~Escapable) {}
594+
595+
private struct NCSendable: ~Copyable, Sendable {}
596+
597+
suite.test("Span Sendability")
598+
.require(.stdlib_6_2).code {
599+
guard #available(SwiftStdlib 6.2, *) else { return }
600+
601+
let buffer = UnsafeMutableBufferPointer<NCSendable>.allocate(capacity: 1)
602+
defer { buffer.deallocate() }
603+
buffer.initializeElement(at: 0, to: NCSendable())
604+
defer { buffer.deinitialize() }
605+
606+
let span = Span(_unsafeElements: buffer)
607+
send(span)
608+
}

0 commit comments

Comments
 (0)