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.
MultithreadingTests
@unchecked Sendable
1 parent 70e3741 commit 547df88Copy full SHA for 547df88
Tests/SwiftSyntaxTest/MultithreadingTests.swift
@@ -20,8 +20,9 @@ extension SyntaxProtocol {
20
}
21
22
23
-class MultithreadingTests: XCTestCase {
24
-
+// Marked as `@unchecked Sendable` to work around rdar://130094927, which complains about `MultithreadingTests` not conforming to
+// `Sendable`.
25
+class MultithreadingTests: XCTestCase, @unchecked Sendable {
26
public func testPathological() {
27
let tuple = TupleTypeSyntax(
28
leftParen: .leftParenToken(),
0 commit comments