This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build URLRequestOperation with Swift 6.0 for Linux.

Build Command

bash -c docker run --rm -v "checkouts-4606859-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
 1 | public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
   |               `- note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSCharacterSet
 3 |     public init()
/host/spi-builder-workspace/Sources/MediaType/MediaType.swift:200:13: warning: static property 'digit' is not concurrency-safe because non-'Sendable' type 'CharacterSet' may have shared mutable state; this is an error in the Swift 6 language mode
198 | 	static let ws = sp.union(htab)
199 |
200 | 	static let digit = CharacterSet(charactersIn: "0123456789")
    |             |- warning: static property 'digit' is not concurrency-safe because non-'Sendable' type 'CharacterSet' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'digit' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
201 | 	static let alpha = CharacterSet(charactersIn: "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
202 | 	static let tchar = CharacterSet(charactersIn: "!#$%&'*+-.^_`|~").union(digit).union(alpha)
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
 1 | public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
   |               `- note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSCharacterSet
 3 |     public init()
/host/spi-builder-workspace/Sources/MediaType/MediaType.swift:201:13: warning: static property 'alpha' is not concurrency-safe because non-'Sendable' type 'CharacterSet' may have shared mutable state; this is an error in the Swift 6 language mode
199 |
200 | 	static let digit = CharacterSet(charactersIn: "0123456789")
201 | 	static let alpha = CharacterSet(charactersIn: "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
    |             |- warning: static property 'alpha' is not concurrency-safe because non-'Sendable' type 'CharacterSet' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'alpha' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
202 | 	static let tchar = CharacterSet(charactersIn: "!#$%&'*+-.^_`|~").union(digit).union(alpha)
203 |
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
 1 | public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
   |               `- note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSCharacterSet
 3 |     public init()
/host/spi-builder-workspace/Sources/MediaType/MediaType.swift:202:13: warning: static property 'tchar' is not concurrency-safe because non-'Sendable' type 'CharacterSet' may have shared mutable state; this is an error in the Swift 6 language mode
200 | 	static let digit = CharacterSet(charactersIn: "0123456789")
201 | 	static let alpha = CharacterSet(charactersIn: "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
202 | 	static let tchar = CharacterSet(charactersIn: "!#$%&'*+-.^_`|~").union(digit).union(alpha)
    |             |- warning: static property 'tchar' is not concurrency-safe because non-'Sendable' type 'CharacterSet' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'tchar' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
203 |
204 | 	static let qdtext = ws
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
 1 | public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
   |               `- note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSCharacterSet
 3 |     public init()
/host/spi-builder-workspace/Sources/MediaType/MediaType.swift:204:13: warning: static property 'qdtext' is not concurrency-safe because non-'Sendable' type 'CharacterSet' may have shared mutable state; this is an error in the Swift 6 language mode
202 | 	static let tchar = CharacterSet(charactersIn: "!#$%&'*+-.^_`|~").union(digit).union(alpha)
203 |
204 | 	static let qdtext = ws
    |             |- warning: static property 'qdtext' is not concurrency-safe because non-'Sendable' type 'CharacterSet' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'qdtext' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
205 | 		.union(CharacterSet(arrayLiteral: Unicode.Scalar(0x21)))
206 | 		.union(CharacterSet(charactersIn: Unicode.Scalar(0x23)...Unicode.Scalar(0x5b)))
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
 1 | public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
   |               `- note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSCharacterSet
 3 |     public init()
/host/spi-builder-workspace/Sources/MediaType/MediaType.swift:209:13: warning: static property 'quotedPairSecondChar' is not concurrency-safe because non-'Sendable' type 'CharacterSet' may have shared mutable state; this is an error in the Swift 6 language mode
207 | 		.union(CharacterSet(charactersIn: Unicode.Scalar(0x5d)...Unicode.Scalar(0x7e)))
208 | 		/* no obs-text */
209 | 	static let quotedPairSecondChar = ws
    |             |- warning: static property 'quotedPairSecondChar' is not concurrency-safe because non-'Sendable' type 'CharacterSet' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'quotedPairSecondChar' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
210 | 		.union(CharacterSet(charactersIn: Unicode.Scalar(0x21)...Unicode.Scalar(0x7e)))
211 | 		/* no obs-text */
Foundation.CharacterSet:1:15: note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
 1 | public struct CharacterSet : ReferenceConvertible, Equatable, Hashable, SetAlgebra {
   |               `- note: struct 'CharacterSet' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSCharacterSet
 3 |     public init()
[45/142] Compiling FormURLEncodedCoder FormURLEncodedData.swift
[47/142] Emitting module FormURLEncodedCoder
[48/142] Compiling RetryingOperation WrappedRetryingOperation.swift
[49/142] Compiling FormURLEncodedCoder FormURLEncodedEncoder.swift
[50/142] Compiling FormURLEncodedCoder FormURLEncodedDecoder.swift
[50/142] Wrapping AST for MediaType for debugging
[52/142] Compiling FormURLEncodedCoder FormURLEncodedSerializer.swift
[53/142] Compiling FormURLEncodedCoder FormURLEncodedEncodingErrors.swift
[54/142] Compiling FormURLEncodedCoder FormURLEncodedParser.swift
[55/142] Compiling FormURLEncodedCoder URLQueryFragmentConvertible.swift
[56/143] Wrapping AST for FormURLEncodedCoder for debugging
[58/143] Compiling RecursiveSyncDispatch RecursiveSyncDispatch.swift
[59/143] Emitting module RetryingOperation
[60/143] Compiling RetryingOperation RetryHelper.swift
[61/143] Compiling RetryingOperation RetryingOperation.swift
[63/145] Wrapping AST for RetryingOperation for debugging
[64/145] Wrapping AST for RecursiveSyncDispatch for debugging
[66/149] Compiling SemiSingleton LinuxStrongToWeakMapTable.swift
[67/149] Emitting module SemiSingleton
[68/149] Compiling SwiftSyntax SyntaxArena.swift
[69/149] Compiling SwiftSyntax SyntaxChildren.swift
[70/149] Compiling SwiftSyntax SyntaxCollection.swift
[71/149] Compiling SwiftSyntax SyntaxHashable.swift
[72/149] Compiling SwiftSyntax SyntaxIdentifier.swift
[73/149] Compiling SwiftSyntax SyntaxNodeStructure.swift
[74/149] Compiling SwiftSyntax SyntaxProtocol.swift
[75/149] Compiling SwiftSyntax SyntaxText.swift
[76/149] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[77/157] Compiling SemiSingleton SemiSingletonConfig.swift
[78/157] Compiling SemiSingleton SemiSingletonStore.swift
[79/158] Wrapping AST for SemiSingleton for debugging
[81/158] Compiling SwiftSyntax AbsolutePosition.swift
[82/158] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[83/158] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[84/158] Compiling SwiftSyntax Assert.swift
[85/158] Compiling SwiftSyntax BumpPtrAllocator.swift
[86/158] Compiling SwiftSyntax CommonAncestor.swift
[87/158] Compiling SwiftSyntax Convenience.swift
[88/158] Compiling SwiftSyntax MemoryLayout.swift
[89/158] Compiling SwiftSyntax MissingNodeInitializers.swift
[90/158] Compiling SwiftSyntax RawSyntax.swift
[91/158] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[92/158] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[93/158] Compiling SwiftSyntax RawSyntaxTokenView.swift
[94/158] Compiling SwiftSyntax SourceLength.swift
[95/158] Compiling SwiftSyntax SourceLocation.swift
[96/158] Compiling SwiftSyntax SourcePresence.swift
[97/158] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[98/158] Compiling SwiftSyntax Syntax.swift
[99/158] Emitting module SwiftSyntax
[100/158] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[101/158] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[102/158] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[103/158] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[104/158] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[105/158] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[106/158] Compiling SwiftSyntax RawSyntaxValidation.swift
[107/158] Compiling SwiftSyntax SyntaxNodesAB.swift
[108/158] Compiling SwiftSyntax TokenDiagnostic.swift
[109/158] Compiling SwiftSyntax TokenSequence.swift
[110/158] Compiling SwiftSyntax TokenSyntax.swift
[111/158] Compiling SwiftSyntax Trivia.swift
[112/158] Compiling SwiftSyntax Utils.swift
[113/158] Compiling SwiftSyntax ChildNameForKeyPath.swift
[114/158] Compiling SwiftSyntax Keyword.swift
[115/158] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[116/158] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[117/158] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[118/158] Compiling SwiftSyntax SyntaxBaseNodes.swift
[119/158] Compiling SwiftSyntax SyntaxCollections.swift
[120/158] Compiling SwiftSyntax SyntaxEnum.swift
[121/158] Compiling SwiftSyntax SyntaxKind.swift
[122/158] Compiling SwiftSyntax SyntaxRewriter.swift
[123/158] Compiling SwiftSyntax SyntaxTraits.swift
[124/158] Compiling SwiftSyntax SyntaxTransform.swift
[125/158] Compiling SwiftSyntax SyntaxVisitor.swift
[126/158] Compiling SwiftSyntax TokenKind.swift
[127/158] Compiling SwiftSyntax Tokens.swift
[128/158] Compiling SwiftSyntax TriviaPieces.swift
[129/158] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[130/158] Compiling SwiftSyntax RawSyntaxNodesC.swift
[131/158] Compiling SwiftSyntax RawSyntaxNodesD.swift
[132/158] Compiling SwiftSyntax SyntaxNodesC.swift
[133/158] Compiling SwiftSyntax SyntaxNodesD.swift
[134/158] Compiling SwiftSyntax SyntaxNodesEF.swift
[135/158] Compiling SwiftSyntax SyntaxNodesGHI.swift
[136/158] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[137/158] Compiling SwiftSyntax SyntaxNodesOP.swift
[138/158] Compiling SwiftSyntax SyntaxNodesQRS.swift
[139/158] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[140/159] Wrapping AST for SwiftSyntax for debugging
[142/210] Compiling SwiftDiagnostics Note.swift
[143/210] Compiling SwiftDiagnostics Message.swift
[144/210] Compiling SwiftDiagnostics Convenience.swift
[145/210] Emitting module SwiftDiagnostics
[146/210] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[147/210] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[148/210] Compiling SwiftBasicFormat Syntax+Extensions.swift
[149/210] Emitting module SwiftBasicFormat
[150/210] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[151/210] Compiling SwiftDiagnostics FixIt.swift
[152/210] Compiling SwiftBasicFormat BasicFormat.swift
[153/211] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[154/211] Compiling SwiftDiagnostics Diagnostic.swift
[156/212] Wrapping AST for SwiftBasicFormat for debugging
[157/212] Wrapping AST for SwiftDiagnostics for debugging
[159/212] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[160/212] Compiling SwiftParser StringLiterals.swift
[161/212] Compiling SwiftParser SwiftParserCompatibility.swift
[162/212] Compiling SwiftParser SyntaxUtils.swift
[163/212] Compiling SwiftParser TokenConsumer.swift
[164/217] Compiling SwiftParser Lexer.swift
[165/217] Compiling SwiftParser RegexLiteralLexer.swift
[166/217] Compiling SwiftParser UnicodeScalarExtensions.swift
[167/217] Compiling SwiftParser Lookahead.swift
[168/217] Compiling SwiftParser LoopProgressCondition.swift
[169/217] Compiling SwiftParser TokenPrecedence.swift
[170/217] Compiling SwiftParser TokenSpec.swift
[171/217] Compiling SwiftParser TokenSpecSet.swift
[172/217] Compiling SwiftParser TopLevel.swift
[173/217] Compiling SwiftParser TriviaParser.swift
[174/217] Compiling SwiftParser Parser.swift
[175/217] Compiling SwiftParser Patterns.swift
[176/217] Compiling SwiftParser Recovery.swift
[177/217] Compiling SwiftParser Specifiers.swift
[178/217] Compiling SwiftParser Statements.swift
[179/217] Compiling SwiftParser Modifiers.swift
[180/217] Compiling SwiftParser Names.swift
[181/217] Compiling SwiftParser Nominals.swift
[182/217] Compiling SwiftParser Parameters.swift
[183/217] Compiling SwiftParser ParseSourceFile.swift
[184/217] Emitting module SwiftParser
[185/217] Compiling SwiftParser Attributes.swift
[186/217] Compiling SwiftParser Availability.swift
[187/217] Compiling SwiftParser CharacterInfo.swift
[188/217] Compiling SwiftParser CollectionNodes+Parsable.swift
[189/217] Compiling SwiftParser Declarations.swift
[190/217] Compiling SwiftParser Directives.swift
[191/217] Compiling SwiftParser ExperimentalFeatures.swift
[192/217] Compiling SwiftParser Expressions.swift
[193/217] Compiling SwiftParser IncrementalParseTransition.swift
[194/217] Compiling SwiftParser Cursor.swift
[195/217] Compiling SwiftParser Lexeme.swift
[196/217] Compiling SwiftParser LexemeSequence.swift
[197/217] Compiling SwiftParser Types.swift
[198/217] Compiling SwiftParser IsLexerClassified.swift
[199/217] Compiling SwiftParser LayoutNodes+Parsable.swift
[200/217] Compiling SwiftParser Parser+TokenSpecSet.swift
[201/217] Compiling SwiftParser TokenSpecStaticMembers.swift
[202/218] Wrapping AST for SwiftParser for debugging
[204/241] Compiling SwiftOperators PrecedenceGroup.swift
[205/242] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[206/243] Compiling SwiftParserDiagnostics MissingNodesError.swift
[207/243] Compiling SwiftParserDiagnostics MissingTokenError.swift
[208/243] Compiling SwiftOperators PrecedenceGraph.swift
[209/243] Compiling SwiftOperators OperatorTable.swift
[210/243] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[211/243] Compiling SwiftOperators SyntaxSynthesis.swift
[212/243] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[213/243] Compiling SwiftParserDiagnostics Utils.swift
[214/243] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[215/243] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[216/243] Emitting module SwiftOperators
[217/243] Compiling SwiftOperators OperatorTable+Semantics.swift
[218/243] Compiling SwiftOperators OperatorTable+Folding.swift
[220/244] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[220/244] Wrapping AST for SwiftOperators for debugging
[222/244] Emitting module SwiftParserDiagnostics
[225/244] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[226/244] Compiling SwiftParserDiagnostics PresenceUtils.swift
[229/244] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[230/244] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[231/245] Wrapping AST for SwiftParserDiagnostics for debugging
[233/259] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[234/259] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[235/260] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[236/260] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[237/260] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[238/260] Compiling SwiftSyntaxBuilder Indenter.swift
[239/260] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[240/260] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[241/260] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[242/260] Emitting module SwiftSyntaxBuilder
[243/260] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[244/260] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[245/260] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[246/260] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[247/260] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[248/261] Wrapping AST for SwiftSyntaxBuilder for debugging
[250/275] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[251/275] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[252/276] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[253/276] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[254/276] Compiling SwiftSyntaxMacros MemberMacro.swift
[255/276] Compiling SwiftSyntaxMacros Macro.swift
[256/276] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[257/276] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[258/276] Compiling SwiftSyntaxMacros Macro+Format.swift
[259/276] Compiling SwiftSyntaxMacros PeerMacro.swift
[260/276] Emitting module SwiftSyntaxMacros
[261/276] Compiling SwiftSyntaxMacros AccessorMacro.swift
[262/276] Compiling SwiftSyntaxMacros AttachedMacro.swift
[263/276] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[264/276] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[265/277] Wrapping AST for SwiftSyntaxMacros for debugging
[267/285] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[268/285] Emitting module SwiftSyntaxMacroExpansion
[269/285] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[270/285] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[271/285] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[272/285] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[273/285] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[274/285] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[275/286] Wrapping AST for SwiftSyntaxMacroExpansion for debugging
[277/293] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[278/293] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[279/293] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[280/293] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[281/293] Emitting module SwiftCompilerPluginMessageHandling
[282/293] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[283/293] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[284/294] Wrapping AST for SwiftCompilerPluginMessageHandling for debugging
[286/296] Emitting module SwiftCompilerPlugin
[287/296] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[288/297] Wrapping AST for SwiftCompilerPlugin for debugging
[290/301] Compiling SafeGlobalMacros SimpleDiagnosticMessage.swift
[291/301] Compiling SafeGlobalMacros  Errors.swift
[292/301] Emitting module SafeGlobalMacros
[293/301] Compiling SafeGlobalMacros SafeGlobalMacro.swift
[294/302] Wrapping AST for SafeGlobalMacros for debugging
[295/302] Write Objects.LinkFileList
[296/302] Linking SafeGlobalMacros
[298/306] Compiling SafeGlobal NSLock+Linux.swift
[299/306] Compiling SafeGlobal SafeGlobal.swift
[300/306] Compiling SafeGlobal SafeGlobalMacro.swift
Swift/UnsafeRawPointer.swift:440: Fatal error: load from misaligned raw pointer
*** Signal 4: Backtracing from 0x7efd5286bd04... done ***
*** Program crashed: Illegal instruction at 0x00007efd5286bd04 ***
Thread 0 "SafeGlobalMacro" crashed:
0      0x00007efd5286bd04 closure #1 in closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 308 in libswiftCore.so
1 [ra] 0x00007efd5286bab2 closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 257 in libswiftCore.so
2 [ra] 0x00007efd5286b96d closure #1 in _assertionFailure(_:_:file:line:flags:) + 380 in libswiftCore.so
3 [ra] 0x00007efd529efa36 _assertionFailure(_:_:file:line:flags:) + 229 in libswiftCore.so
4 [ra] 0x00007efd529efc8e _fatalErrorMessage(_:_:file:line:flags:) + 45 in libswiftCore.so
5 [ra] 0x00007efd52a71910 UnsafeRawBufferPointer.load<A>(fromByteOffset:as:) + 191 in libswiftCore.so
6 [ra] 0x000055a111d10b42 closure #1 in PluginHostConnection.waitForNextMessage<A>(_:) + 81 in SafeGlobalMacros at /host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:213:31
7 [ra] 0x00007efd51e7f3ff partial apply for closure #1 in Data.InlineData.withUnsafeBytes<A>(_:) + 30 in libFoundation.so
Registers:
rax 0x0000000000000000  0
rdx 0x0000000000000001  1
rcx 0x0000000000000002  2
rbx 0x000055a44ef12397  94164187423639
rsi 0x0000000000000007  7
rdi 0x000055a114df4010  02 00 00 00 02 00 02 00 01 00 01 00 00 00 02 00  ················
rbp 0x00007ffdca31cbe0  20 cc 31 ca fd 7f 00 00 b2 ba 86 52 fd 7e 00 00   Ì1Êý···²º·Rý~··
rsp 0x00007ffdca31cbd0  20 00 00 00 00 00 00 00 b8 01 00 00 00 00 00 00   ·······¸·······
 r8 0x000055a114e07370  97 23 f1 4e a4 55 00 00 17 51 65 be 8b fa 96 6d  ·#ñN¤U···Qe¾·ú·m
 r9 0x00007ffdca31c9c0  46 61 74 61 6c 20 65 72 72 6f 72 3a 20 6c 6f 61  Fatal error: loa
r10 0x0000000000000000  0
r11 0x6d96fa8bbe655117  7896774474742452503
r12 0x0000000000000000  0
r13 0x00007efd52cb1eb0  00 02 00 00 00 00 00 00 ac 79 cf 52 fd 7e 00 00  ········¬yÏRý~··
r14 0x0000000000000001  1
r15 0x0000000000000001  1
rip 0x00007efd5286bd04  0f 0b 48 83 ec 08 48 8d 05 6f 72 47 00 48 8d 3d  ··H·ì·H··orG·H·=
rflags 0x0000000000010202
cs 0x0033  fs 0x0000  gs 0x0000
Images (16 omitted):
0x000055a111c30000–0x000055a1137f7cc8 befa6fd65d7c182560ba6a34dd6d4a64880ebba3 SafeGlobalMacros /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros
0x00007efd51b61000–0x00007efd5228d168 <no build ID>                            libFoundation.so /usr/lib/swift/linux/libFoundation.so
0x00007efd5270c000–0x00007efd52cab6b0 <no build ID>                            libswiftCore.so  /usr/lib/swift/linux/libswiftCore.so
Backtrace took 0.60s
[301/306] Emitting module SafeGlobal
Swift/UnsafeRawPointer.swift:440: Fatal error: load from misaligned raw pointer
*** Signal 4: Backtracing from 0x7f0d9e923d04... done ***
*** Program crashed: Illegal instruction at 0x00007f0d9e923d04 ***
Thread 0 "SafeGlobalMacro" crashed:
0      0x00007f0d9e923d04 closure #1 in closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 308 in libswiftCore.so
1 [ra] 0x00007f0d9e923ab2 closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 257 in libswiftCore.so
2 [ra] 0x00007f0d9e92396d closure #1 in _assertionFailure(_:_:file:line:flags:) + 380 in libswiftCore.so
3 [ra] 0x00007f0d9eaa7a36 _assertionFailure(_:_:file:line:flags:) + 229 in libswiftCore.so
4 [ra] 0x00007f0d9eaa7c8e _fatalErrorMessage(_:_:file:line:flags:) + 45 in libswiftCore.so
5 [ra] 0x00007f0d9eb29910 UnsafeRawBufferPointer.load<A>(fromByteOffset:as:) + 191 in libswiftCore.so
6 [ra] 0x000055fdd8987b42 closure #1 in PluginHostConnection.waitForNextMessage<A>(_:) + 81 in SafeGlobalMacros at /host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:213:31
7 [ra] 0x00007f0d9df373ff partial apply for closure #1 in Data.InlineData.withUnsafeBytes<A>(_:) + 30 in libFoundation.so
Registers:
rax 0x0000000000000000  0
rdx 0x0000000000000001  1
rcx 0x0000000000000002  2
rbx 0x000055f884d22d6a  94525868617066
rsi 0x0000000000000007  7
rdi 0x000055fddb0e7010  02 00 00 00 02 00 02 00 01 00 01 00 00 00 02 00  ················
rbp 0x00007ffef9febd90  d0 bd fe f9 fe 7f 00 00 b2 3a 92 9e 0d 7f 00 00  нþùþ···²:······
rsp 0x00007ffef9febd80  20 00 00 00 00 00 00 00 b8 01 00 00 00 00 00 00   ·······¸·······
 r8 0x000055fddb0fa370  6a 2d d2 84 f8 55 00 00 3d b8 d8 ed 75 86 89 ed  j-Ò·øU··=¸Øíu··í
 r9 0x00007ffef9febb70  46 61 74 61 6c 20 65 72 72 6f 72 3a 20 6c 6f 61  Fatal error: loa
r10 0x0000000000000000  0
r11 0xed898675edd8b83d  17116359699857979453
r12 0x0000000000000000  0
r13 0x00007f0d9ed69eb0  00 02 00 00 00 00 00 00 ac f9 da 9e 0d 7f 00 00  ········¬ùÚ·····
r14 0x0000000000000001  1
r15 0x0000000000000001  1
rip 0x00007f0d9e923d04  0f 0b 48 83 ec 08 48 8d 05 6f 72 47 00 48 8d 3d  ··H·ì·H··orG·H·=
rflags 0x0000000000010202
cs 0x0033  fs 0x0000  gs 0x0000
Images (16 omitted):
0x000055fdd88a7000–0x000055fdda46ecc8 befa6fd65d7c182560ba6a34dd6d4a64880ebba3 SafeGlobalMacros /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros
0x00007f0d9dc19000–0x00007f0d9e345168 <no build ID>                            libFoundation.so /usr/lib/swift/linux/libFoundation.so
0x00007f0d9e7c4000–0x00007f0d9ed636b0 <no build ID>                            libswiftCore.so  /usr/lib/swift/linux/libswiftCore.so
Backtrace took 0.61s
[302/307] Wrapping AST for SafeGlobal for debugging
[304/357] Compiling URLRequestOperation BlockDispatcher.swift
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/BlockDispatcher.swift:41:1: warning: extension declares a conformance of imported type 'OperationQueue' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
39 |
40 | /* @unchecked Sendable: https://forums.swift.org/t/sendable-in-foundation/59577 */
41 | extension OperationQueue : BlockDispatcher, @unchecked Sendable {
   | |- warning: extension declares a conformance of imported type 'OperationQueue' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
42 |
43 | 	public func execute(_ work: @Sendable @escaping () -> Void) {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:28:1: warning: extension declares a conformance of imported type 'JSONEncoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
26 |
27 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
28 | extension JSONEncoder : HTTPContentEncoder {
   | |- warning: extension declares a conformance of imported type 'JSONEncoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
29 |
30 | 	public func encodeForHTTPContent<T>(_ value: T) throws -> (Data, MediaType) where T : Encodable {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:28:1: warning: conformance to 'Sendable' must occur in the same source file as class 'JSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
26 |
27 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
28 | extension JSONEncoder : HTTPContentEncoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'JSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
29 |
30 | 	public func encodeForHTTPContent<T>(_ value: T) throws -> (Data, MediaType) where T : Encodable {
Foundation.JSONEncoder:36:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'JSONEncoder' is mutable; this is an error in the Swift 6 language mode
34 |         case custom((_ codingPath: [any CodingKey]) -> any CodingKey)
35 |     }
36 |     open var outputFormatting: JSONEncoder.OutputFormatting
   |              `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'JSONEncoder' is mutable; this is an error in the Swift 6 language mode
37 |     open var dateEncodingStrategy: JSONEncoder.DateEncodingStrategy
38 |     open var dataEncodingStrategy: JSONEncoder.DataEncodingStrategy
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:62:1: warning: extension declares a conformance of imported type 'JSONDecoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
60 |
61 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
62 | extension JSONDecoder : HTTPContentDecoder {
   | |- warning: extension declares a conformance of imported type 'JSONDecoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
63 |
64 | 	public func canDecodeHTTPContent(mediaType: MediaType) -> Bool {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:62:1: warning: conformance to 'Sendable' must occur in the same source file as class 'JSONDecoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
60 |
61 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
62 | extension JSONDecoder : HTTPContentDecoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'JSONDecoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
63 |
64 | 	public func canDecodeHTTPContent(mediaType: MediaType) -> Bool {
Foundation.JSONDecoder:25:14: warning: stored property 'dateDecodingStrategy' of 'Sendable'-conforming class 'JSONDecoder' is mutable; this is an error in the Swift 6 language mode
23 |         case custom((_ codingPath: [any CodingKey]) -> any CodingKey)
24 |     }
25 |     open var dateDecodingStrategy: JSONDecoder.DateDecodingStrategy
   |              `- warning: stored property 'dateDecodingStrategy' of 'Sendable'-conforming class 'JSONDecoder' is mutable; this is an error in the Swift 6 language mode
26 |     open var dataDecodingStrategy: JSONDecoder.DataDecodingStrategy
27 |     open var nonConformingFloatDecodingStrategy: JSONDecoder.NonConformingFloatDecodingStrategy
[305/357] Compiling URLRequestOperation HTTPContentCoder+FormURLEncodedEncoding.swift
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/BlockDispatcher.swift:41:1: warning: extension declares a conformance of imported type 'OperationQueue' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
39 |
40 | /* @unchecked Sendable: https://forums.swift.org/t/sendable-in-foundation/59577 */
41 | extension OperationQueue : BlockDispatcher, @unchecked Sendable {
   | |- warning: extension declares a conformance of imported type 'OperationQueue' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
42 |
43 | 	public func execute(_ work: @Sendable @escaping () -> Void) {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:28:1: warning: extension declares a conformance of imported type 'JSONEncoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
26 |
27 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
28 | extension JSONEncoder : HTTPContentEncoder {
   | |- warning: extension declares a conformance of imported type 'JSONEncoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
29 |
30 | 	public func encodeForHTTPContent<T>(_ value: T) throws -> (Data, MediaType) where T : Encodable {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:28:1: warning: conformance to 'Sendable' must occur in the same source file as class 'JSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
26 |
27 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
28 | extension JSONEncoder : HTTPContentEncoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'JSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
29 |
30 | 	public func encodeForHTTPContent<T>(_ value: T) throws -> (Data, MediaType) where T : Encodable {
Foundation.JSONEncoder:36:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'JSONEncoder' is mutable; this is an error in the Swift 6 language mode
34 |         case custom((_ codingPath: [any CodingKey]) -> any CodingKey)
35 |     }
36 |     open var outputFormatting: JSONEncoder.OutputFormatting
   |              `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'JSONEncoder' is mutable; this is an error in the Swift 6 language mode
37 |     open var dateEncodingStrategy: JSONEncoder.DateEncodingStrategy
38 |     open var dataEncodingStrategy: JSONEncoder.DataEncodingStrategy
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:62:1: warning: extension declares a conformance of imported type 'JSONDecoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
60 |
61 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
62 | extension JSONDecoder : HTTPContentDecoder {
   | |- warning: extension declares a conformance of imported type 'JSONDecoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
63 |
64 | 	public func canDecodeHTTPContent(mediaType: MediaType) -> Bool {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:62:1: warning: conformance to 'Sendable' must occur in the same source file as class 'JSONDecoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
60 |
61 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
62 | extension JSONDecoder : HTTPContentDecoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'JSONDecoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
63 |
64 | 	public func canDecodeHTTPContent(mediaType: MediaType) -> Bool {
Foundation.JSONDecoder:25:14: warning: stored property 'dateDecodingStrategy' of 'Sendable'-conforming class 'JSONDecoder' is mutable; this is an error in the Swift 6 language mode
23 |         case custom((_ codingPath: [any CodingKey]) -> any CodingKey)
24 |     }
25 |     open var dateDecodingStrategy: JSONDecoder.DateDecodingStrategy
   |              `- warning: stored property 'dateDecodingStrategy' of 'Sendable'-conforming class 'JSONDecoder' is mutable; this is an error in the Swift 6 language mode
26 |     open var dataDecodingStrategy: JSONDecoder.DataDecodingStrategy
27 |     open var nonConformingFloatDecodingStrategy: JSONDecoder.NonConformingFloatDecodingStrategy
[306/357] Compiling URLRequestOperation HTTPContentCoder+JSON.swift
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/BlockDispatcher.swift:41:1: warning: extension declares a conformance of imported type 'OperationQueue' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
39 |
40 | /* @unchecked Sendable: https://forums.swift.org/t/sendable-in-foundation/59577 */
41 | extension OperationQueue : BlockDispatcher, @unchecked Sendable {
   | |- warning: extension declares a conformance of imported type 'OperationQueue' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
42 |
43 | 	public func execute(_ work: @Sendable @escaping () -> Void) {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:28:1: warning: extension declares a conformance of imported type 'JSONEncoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
26 |
27 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
28 | extension JSONEncoder : HTTPContentEncoder {
   | |- warning: extension declares a conformance of imported type 'JSONEncoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
29 |
30 | 	public func encodeForHTTPContent<T>(_ value: T) throws -> (Data, MediaType) where T : Encodable {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:28:1: warning: conformance to 'Sendable' must occur in the same source file as class 'JSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
26 |
27 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
28 | extension JSONEncoder : HTTPContentEncoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'JSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
29 |
30 | 	public func encodeForHTTPContent<T>(_ value: T) throws -> (Data, MediaType) where T : Encodable {
Foundation.JSONEncoder:36:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'JSONEncoder' is mutable; this is an error in the Swift 6 language mode
34 |         case custom((_ codingPath: [any CodingKey]) -> any CodingKey)
35 |     }
36 |     open var outputFormatting: JSONEncoder.OutputFormatting
   |              `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'JSONEncoder' is mutable; this is an error in the Swift 6 language mode
37 |     open var dateEncodingStrategy: JSONEncoder.DateEncodingStrategy
38 |     open var dataEncodingStrategy: JSONEncoder.DataEncodingStrategy
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:62:1: warning: extension declares a conformance of imported type 'JSONDecoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
60 |
61 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
62 | extension JSONDecoder : HTTPContentDecoder {
   | |- warning: extension declares a conformance of imported type 'JSONDecoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
63 |
64 | 	public func canDecodeHTTPContent(mediaType: MediaType) -> Bool {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:62:1: warning: conformance to 'Sendable' must occur in the same source file as class 'JSONDecoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
60 |
61 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
62 | extension JSONDecoder : HTTPContentDecoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'JSONDecoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
63 |
64 | 	public func canDecodeHTTPContent(mediaType: MediaType) -> Bool {
Foundation.JSONDecoder:25:14: warning: stored property 'dateDecodingStrategy' of 'Sendable'-conforming class 'JSONDecoder' is mutable; this is an error in the Swift 6 language mode
23 |         case custom((_ codingPath: [any CodingKey]) -> any CodingKey)
24 |     }
25 |     open var dateDecodingStrategy: JSONDecoder.DateDecodingStrategy
   |              `- warning: stored property 'dateDecodingStrategy' of 'Sendable'-conforming class 'JSONDecoder' is mutable; this is an error in the Swift 6 language mode
26 |     open var dataDecodingStrategy: JSONDecoder.DataDecodingStrategy
27 |     open var nonConformingFloatDecodingStrategy: JSONDecoder.NonConformingFloatDecodingStrategy
[307/357] Compiling URLRequestOperation HTTPContentCoder.swift
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/BlockDispatcher.swift:41:1: warning: extension declares a conformance of imported type 'OperationQueue' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
39 |
40 | /* @unchecked Sendable: https://forums.swift.org/t/sendable-in-foundation/59577 */
41 | extension OperationQueue : BlockDispatcher, @unchecked Sendable {
   | |- warning: extension declares a conformance of imported type 'OperationQueue' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
42 |
43 | 	public func execute(_ work: @Sendable @escaping () -> Void) {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:28:1: warning: extension declares a conformance of imported type 'JSONEncoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
26 |
27 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
28 | extension JSONEncoder : HTTPContentEncoder {
   | |- warning: extension declares a conformance of imported type 'JSONEncoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
29 |
30 | 	public func encodeForHTTPContent<T>(_ value: T) throws -> (Data, MediaType) where T : Encodable {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:28:1: warning: conformance to 'Sendable' must occur in the same source file as class 'JSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
26 |
27 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
28 | extension JSONEncoder : HTTPContentEncoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'JSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
29 |
30 | 	public func encodeForHTTPContent<T>(_ value: T) throws -> (Data, MediaType) where T : Encodable {
Foundation.JSONEncoder:36:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'JSONEncoder' is mutable; this is an error in the Swift 6 language mode
34 |         case custom((_ codingPath: [any CodingKey]) -> any CodingKey)
35 |     }
36 |     open var outputFormatting: JSONEncoder.OutputFormatting
   |              `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'JSONEncoder' is mutable; this is an error in the Swift 6 language mode
37 |     open var dateEncodingStrategy: JSONEncoder.DateEncodingStrategy
38 |     open var dataEncodingStrategy: JSONEncoder.DataEncodingStrategy
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:62:1: warning: extension declares a conformance of imported type 'JSONDecoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
60 |
61 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
62 | extension JSONDecoder : HTTPContentDecoder {
   | |- warning: extension declares a conformance of imported type 'JSONDecoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
63 |
64 | 	public func canDecodeHTTPContent(mediaType: MediaType) -> Bool {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:62:1: warning: conformance to 'Sendable' must occur in the same source file as class 'JSONDecoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
60 |
61 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
62 | extension JSONDecoder : HTTPContentDecoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'JSONDecoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
63 |
64 | 	public func canDecodeHTTPContent(mediaType: MediaType) -> Bool {
Foundation.JSONDecoder:25:14: warning: stored property 'dateDecodingStrategy' of 'Sendable'-conforming class 'JSONDecoder' is mutable; this is an error in the Swift 6 language mode
23 |         case custom((_ codingPath: [any CodingKey]) -> any CodingKey)
24 |     }
25 |     open var dateDecodingStrategy: JSONDecoder.DateDecodingStrategy
   |              `- warning: stored property 'dateDecodingStrategy' of 'Sendable'-conforming class 'JSONDecoder' is mutable; this is an error in the Swift 6 language mode
26 |     open var dataDecodingStrategy: JSONDecoder.DataDecodingStrategy
27 |     open var nonConformingFloatDecodingStrategy: JSONDecoder.NonConformingFloatDecodingStrategy
[308/357] Compiling URLRequestOperation HTTPURLResponse+Utils.swift
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/BlockDispatcher.swift:41:1: warning: extension declares a conformance of imported type 'OperationQueue' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
39 |
40 | /* @unchecked Sendable: https://forums.swift.org/t/sendable-in-foundation/59577 */
41 | extension OperationQueue : BlockDispatcher, @unchecked Sendable {
   | |- warning: extension declares a conformance of imported type 'OperationQueue' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
42 |
43 | 	public func execute(_ work: @Sendable @escaping () -> Void) {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:28:1: warning: extension declares a conformance of imported type 'JSONEncoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
26 |
27 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
28 | extension JSONEncoder : HTTPContentEncoder {
   | |- warning: extension declares a conformance of imported type 'JSONEncoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
29 |
30 | 	public func encodeForHTTPContent<T>(_ value: T) throws -> (Data, MediaType) where T : Encodable {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:28:1: warning: conformance to 'Sendable' must occur in the same source file as class 'JSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
26 |
27 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
28 | extension JSONEncoder : HTTPContentEncoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'JSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
29 |
30 | 	public func encodeForHTTPContent<T>(_ value: T) throws -> (Data, MediaType) where T : Encodable {
Foundation.JSONEncoder:36:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'JSONEncoder' is mutable; this is an error in the Swift 6 language mode
34 |         case custom((_ codingPath: [any CodingKey]) -> any CodingKey)
35 |     }
36 |     open var outputFormatting: JSONEncoder.OutputFormatting
   |              `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'JSONEncoder' is mutable; this is an error in the Swift 6 language mode
37 |     open var dateEncodingStrategy: JSONEncoder.DateEncodingStrategy
38 |     open var dataEncodingStrategy: JSONEncoder.DataEncodingStrategy
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:62:1: warning: extension declares a conformance of imported type 'JSONDecoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
60 |
61 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
62 | extension JSONDecoder : HTTPContentDecoder {
   | |- warning: extension declares a conformance of imported type 'JSONDecoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
63 |
64 | 	public func canDecodeHTTPContent(mediaType: MediaType) -> Bool {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:62:1: warning: conformance to 'Sendable' must occur in the same source file as class 'JSONDecoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
60 |
61 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
62 | extension JSONDecoder : HTTPContentDecoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'JSONDecoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
63 |
64 | 	public func canDecodeHTTPContent(mediaType: MediaType) -> Bool {
Foundation.JSONDecoder:25:14: warning: stored property 'dateDecodingStrategy' of 'Sendable'-conforming class 'JSONDecoder' is mutable; this is an error in the Swift 6 language mode
23 |         case custom((_ codingPath: [any CodingKey]) -> any CodingKey)
24 |     }
25 |     open var dateDecodingStrategy: JSONDecoder.DateDecodingStrategy
   |              `- warning: stored property 'dateDecodingStrategy' of 'Sendable'-conforming class 'JSONDecoder' is mutable; this is an error in the Swift 6 language mode
26 |     open var dataDecodingStrategy: JSONDecoder.DataDecodingStrategy
27 |     open var nonConformingFloatDecodingStrategy: JSONDecoder.NonConformingFloatDecodingStrategy
[309/357] Compiling URLRequestOperation LinuxWeakToWeakMapTable.swift
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/BlockDispatcher.swift:41:1: warning: extension declares a conformance of imported type 'OperationQueue' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
39 |
40 | /* @unchecked Sendable: https://forums.swift.org/t/sendable-in-foundation/59577 */
41 | extension OperationQueue : BlockDispatcher, @unchecked Sendable {
   | |- warning: extension declares a conformance of imported type 'OperationQueue' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
42 |
43 | 	public func execute(_ work: @Sendable @escaping () -> Void) {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:28:1: warning: extension declares a conformance of imported type 'JSONEncoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
26 |
27 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
28 | extension JSONEncoder : HTTPContentEncoder {
   | |- warning: extension declares a conformance of imported type 'JSONEncoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
29 |
30 | 	public func encodeForHTTPContent<T>(_ value: T) throws -> (Data, MediaType) where T : Encodable {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:28:1: warning: conformance to 'Sendable' must occur in the same source file as class 'JSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
26 |
27 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
28 | extension JSONEncoder : HTTPContentEncoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'JSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
29 |
30 | 	public func encodeForHTTPContent<T>(_ value: T) throws -> (Data, MediaType) where T : Encodable {
Foundation.JSONEncoder:36:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'JSONEncoder' is mutable; this is an error in the Swift 6 language mode
34 |         case custom((_ codingPath: [any CodingKey]) -> any CodingKey)
35 |     }
36 |     open var outputFormatting: JSONEncoder.OutputFormatting
   |              `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'JSONEncoder' is mutable; this is an error in the Swift 6 language mode
37 |     open var dateEncodingStrategy: JSONEncoder.DateEncodingStrategy
38 |     open var dataEncodingStrategy: JSONEncoder.DataEncodingStrategy
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:62:1: warning: extension declares a conformance of imported type 'JSONDecoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
60 |
61 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
62 | extension JSONDecoder : HTTPContentDecoder {
   | |- warning: extension declares a conformance of imported type 'JSONDecoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
63 |
64 | 	public func canDecodeHTTPContent(mediaType: MediaType) -> Bool {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:62:1: warning: conformance to 'Sendable' must occur in the same source file as class 'JSONDecoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
60 |
61 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
62 | extension JSONDecoder : HTTPContentDecoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'JSONDecoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
63 |
64 | 	public func canDecodeHTTPContent(mediaType: MediaType) -> Bool {
Foundation.JSONDecoder:25:14: warning: stored property 'dateDecodingStrategy' of 'Sendable'-conforming class 'JSONDecoder' is mutable; this is an error in the Swift 6 language mode
23 |         case custom((_ codingPath: [any CodingKey]) -> any CodingKey)
24 |     }
25 |     open var dateDecodingStrategy: JSONDecoder.DateDecodingStrategy
   |              `- warning: stored property 'dateDecodingStrategy' of 'Sendable'-conforming class 'JSONDecoder' is mutable; this is an error in the Swift 6 language mode
26 |     open var dataDecodingStrategy: JSONDecoder.DataDecodingStrategy
27 |     open var nonConformingFloatDecodingStrategy: JSONDecoder.NonConformingFloatDecodingStrategy
[310/357] Compiling URLRequestOperation LogMetadataKeys.swift
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/BlockDispatcher.swift:41:1: warning: extension declares a conformance of imported type 'OperationQueue' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
39 |
40 | /* @unchecked Sendable: https://forums.swift.org/t/sendable-in-foundation/59577 */
41 | extension OperationQueue : BlockDispatcher, @unchecked Sendable {
   | |- warning: extension declares a conformance of imported type 'OperationQueue' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
42 |
43 | 	public func execute(_ work: @Sendable @escaping () -> Void) {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:28:1: warning: extension declares a conformance of imported type 'JSONEncoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
26 |
27 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
28 | extension JSONEncoder : HTTPContentEncoder {
   | |- warning: extension declares a conformance of imported type 'JSONEncoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
29 |
30 | 	public func encodeForHTTPContent<T>(_ value: T) throws -> (Data, MediaType) where T : Encodable {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:28:1: warning: conformance to 'Sendable' must occur in the same source file as class 'JSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
26 |
27 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
28 | extension JSONEncoder : HTTPContentEncoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'JSONEncoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
29 |
30 | 	public func encodeForHTTPContent<T>(_ value: T) throws -> (Data, MediaType) where T : Encodable {
Foundation.JSONEncoder:36:14: warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'JSONEncoder' is mutable; this is an error in the Swift 6 language mode
34 |         case custom((_ codingPath: [any CodingKey]) -> any CodingKey)
35 |     }
36 |     open var outputFormatting: JSONEncoder.OutputFormatting
   |              `- warning: stored property 'outputFormatting' of 'Sendable'-conforming class 'JSONEncoder' is mutable; this is an error in the Swift 6 language mode
37 |     open var dateEncodingStrategy: JSONEncoder.DateEncodingStrategy
38 |     open var dataEncodingStrategy: JSONEncoder.DataEncodingStrategy
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:62:1: warning: extension declares a conformance of imported type 'JSONDecoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
60 |
61 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
62 | extension JSONDecoder : HTTPContentDecoder {
   | |- warning: extension declares a conformance of imported type 'JSONDecoder' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
63 |
64 | 	public func canDecodeHTTPContent(mediaType: MediaType) -> Bool {
/host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift:62:1: warning: conformance to 'Sendable' must occur in the same source file as class 'JSONDecoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
60 |
61 | @available(macOS 13.0, tvOS 16.0, iOS 16.0, watchOS 9.0, *)
62 | extension JSONDecoder : HTTPContentDecoder {
   | `- warning: conformance to 'Sendable' must occur in the same source file as class 'JSONDecoder'; use '@unchecked Sendable' for retroactive conformance; this is an error in the Swift 6 language mode
63 |
64 | 	public func canDecodeHTTPContent(mediaType: MediaType) -> Bool {
Foundation.JSONDecoder:25:14: warning: stored property 'dateDecodingStrategy' of 'Sendable'-conforming class 'JSONDecoder' is mutable; this is an error in the Swift 6 language mode
23 |         case custom((_ codingPath: [any CodingKey]) -> any CodingKey)
24 |     }
25 |     open var dateDecodingStrategy: JSONDecoder.DateDecodingStrategy
   |              `- warning: stored property 'dateDecodingStrategy' of 'Sendable'-conforming class 'JSONDecoder' is mutable; this is an error in the Swift 6 language mode
26 |     open var dataDecodingStrategy: JSONDecoder.DataDecodingStrategy
27 |     open var nonConformingFloatDecodingStrategy: JSONDecoder.NonConformingFloatDecodingStrategy
[311/363] Compiling URLRequestOperation URLRequest+Utils.swift
Swift/UnsafeRawPointer.swift:440: Fatal error: load from misaligned raw pointer
*** Signal 4: Backtracing from 0x7f19912fad04... done ***
*** Program crashed: Illegal instruction at 0x00007f19912fad04 ***
Thread 0 "SafeGlobalMacro" crashed:
0      0x00007f19912fad04 closure #1 in closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 308 in libswiftCore.so
1 [ra] 0x00007f19912faab2 closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 257 in libswiftCore.so
2 [ra] 0x00007f19912fa96d closure #1 in _assertionFailure(_:_:file:line:flags:) + 380 in libswiftCore.so
3 [ra] 0x00007f199147ea36 _assertionFailure(_:_:file:line:flags:) + 229 in libswiftCore.so
4 [ra] 0x00007f199147ec8e _fatalErrorMessage(_:_:file:line:flags:) + 45 in libswiftCore.so
5 [ra] 0x00007f1991500910 UnsafeRawBufferPointer.load<A>(fromByteOffset:as:) + 191 in libswiftCore.so
6 [ra] 0x00005614a72dab42 closure #1 in PluginHostConnection.waitForNextMessage<A>(_:) + 81 in SafeGlobalMacros at /host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:213:31
7 [ra] 0x00007f199090e3ff partial apply for closure #1 in Data.InlineData.withUnsafeBytes<A>(_:) + 30 in libFoundation.so
Registers:
rax 0x0000000000000000  0
rdx 0x0000000000000001  1
rcx 0x0000000000000002  2
rbx 0x00005611c8b0b233  94634381455923
rsi 0x0000000000000007  7
rdi 0x00005614a9f90010  02 00 00 00 02 00 02 00 01 00 01 00 00 00 02 00  ················
rbp 0x00007ffd8947c660  a0 c6 47 89 fd 7f 00 00 b2 aa 2f 91 19 7f 00 00   ÆG·ý···²ª/·····
rsp 0x00007ffd8947c650  20 00 00 00 00 00 00 00 b8 01 00 00 00 00 00 00   ·······¸·······
 r8 0x00005614a9fa3370  33 b2 b0 c8 11 56 00 00 e2 a0 92 c8 a4 a3 2e 76  3²°È·V··â ·È¤£.v
 r9 0x00007ffd8947c440  46 61 74 61 6c 20 65 72 72 6f 72 3a 20 6c 6f 61  Fatal error: loa
r10 0x0000000000000000  0
r11 0x762ea3a4c892a0e2  8515923873539203298
r12 0x0000000000000000  0
r13 0x00007f1991740eb0  00 02 00 00 00 00 00 00 ac 69 78 91 19 7f 00 00  ········¬ix·····
r14 0x0000000000000001  1
r15 0x0000000000000001  1
rip 0x00007f19912fad04  0f 0b 48 83 ec 08 48 8d 05 6f 72 47 00 48 8d 3d  ··H·ì·H··orG·H·=
rflags 0x0000000000010206  PF
cs 0x0033  fs 0x0000  gs 0x0000
Images (16 omitted):
0x00005614a71fa000–0x00005614a8dc1cc8 befa6fd65d7c182560ba6a34dd6d4a64880ebba3 SafeGlobalMacros /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros
0x00007f19905f0000–0x00007f1990d1c168 <no build ID>                            libFoundation.so /usr/lib/swift/linux/libFoundation.so
0x00007f199119b000–0x00007f199173a6b0 <no build ID>                            libswiftCore.so  /usr/lib/swift/linux/libswiftCore.so
Backtrace took 1.06s
/host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:141:32: error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
139 | 	 Set the value to `.max` to log _everything_.
140 | 	 This is dangerous though as you can get very big logs depending on your usage. */
141 | 	@SafeGlobal public static var maxRequestBodySizeToLog: Int? = nil
    |                                `- error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
142 | 	/**
143 | 	 When receiving data from a server, should we log it?
/host/spi-builder-workspace/.build/checkouts/SafeGlobal/Sources/SafeGlobal/SafeGlobalMacro.swift:7:14: note: 'SafeGlobal()' declared here
5 | @attached(accessor)
6 | @attached(peer, names: prefixed(_))
7 | public macro SafeGlobal() = #externalMacro(module: "SafeGlobalMacros", type: "SafeGlobalMacro")
  |              `- note: 'SafeGlobal()' declared here
8 |
/host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:53:32: error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
 51 | //	public static var oslog: os.Logger? = .init(.default)
 52 | #endif
 53 | 	@SafeGlobal public static var logger: Logging.Logger? = {
    |                                `- error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
 54 | #if canImport(os)
 55 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/host/spi-builder-workspace/.build/checkouts/SafeGlobal/Sources/SafeGlobal/SafeGlobalMacro.swift:7:14: note: 'SafeGlobal()' declared here
5 | @attached(accessor)
6 | @attached(peer, names: prefixed(_))
7 | public macro SafeGlobal() = #externalMacro(module: "SafeGlobalMacros", type: "SafeGlobalMacro")
  |              `- note: 'SafeGlobal()' declared here
8 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Request Processors/AsyncBlockRequestProcessor.swift:36:44: warning: capture of 'urlRequest' with non-sendable type 'URLRequest' in a `@Sendable` closure; this is an error in the Swift 6 language mode
34 | 	public func transform(urlRequest: URLRequest, handler: @escaping @Sendable (Result<URLRequest, Error>) -> Void) {
35 | 		Task{
36 | 			do    {try await handler(.success(block(urlRequest)))}
   |                                            `- warning: capture of 'urlRequest' with non-sendable type 'URLRequest' in a `@Sendable` closure; this is an error in the Swift 6 language mode
37 | 			catch {          handler(.failure(error))}
38 | 		}
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
 1 | public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
   |               `- note: struct 'URLRequest' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURLRequest
 3 |     public typealias CachePolicy = NSURLRequest.CachePolicy
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Request Processors/AsyncBlockRequestProcessor.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
18 | import Foundation
19 | #if canImport(FoundationNetworking)
20 | import FoundationNetworking
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
21 | #endif
22 |
[312/363] Compiling URLRequestOperation URLSession+Linux.swift
Swift/UnsafeRawPointer.swift:440: Fatal error: load from misaligned raw pointer
*** Signal 4: Backtracing from 0x7f19912fad04... done ***
*** Program crashed: Illegal instruction at 0x00007f19912fad04 ***
Thread 0 "SafeGlobalMacro" crashed:
0      0x00007f19912fad04 closure #1 in closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 308 in libswiftCore.so
1 [ra] 0x00007f19912faab2 closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 257 in libswiftCore.so
2 [ra] 0x00007f19912fa96d closure #1 in _assertionFailure(_:_:file:line:flags:) + 380 in libswiftCore.so
3 [ra] 0x00007f199147ea36 _assertionFailure(_:_:file:line:flags:) + 229 in libswiftCore.so
4 [ra] 0x00007f199147ec8e _fatalErrorMessage(_:_:file:line:flags:) + 45 in libswiftCore.so
5 [ra] 0x00007f1991500910 UnsafeRawBufferPointer.load<A>(fromByteOffset:as:) + 191 in libswiftCore.so
6 [ra] 0x00005614a72dab42 closure #1 in PluginHostConnection.waitForNextMessage<A>(_:) + 81 in SafeGlobalMacros at /host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:213:31
7 [ra] 0x00007f199090e3ff partial apply for closure #1 in Data.InlineData.withUnsafeBytes<A>(_:) + 30 in libFoundation.so
Registers:
rax 0x0000000000000000  0
rdx 0x0000000000000001  1
rcx 0x0000000000000002  2
rbx 0x00005611c8b0b233  94634381455923
rsi 0x0000000000000007  7
rdi 0x00005614a9f90010  02 00 00 00 02 00 02 00 01 00 01 00 00 00 02 00  ················
rbp 0x00007ffd8947c660  a0 c6 47 89 fd 7f 00 00 b2 aa 2f 91 19 7f 00 00   ÆG·ý···²ª/·····
rsp 0x00007ffd8947c650  20 00 00 00 00 00 00 00 b8 01 00 00 00 00 00 00   ·······¸·······
 r8 0x00005614a9fa3370  33 b2 b0 c8 11 56 00 00 e2 a0 92 c8 a4 a3 2e 76  3²°È·V··â ·È¤£.v
 r9 0x00007ffd8947c440  46 61 74 61 6c 20 65 72 72 6f 72 3a 20 6c 6f 61  Fatal error: loa
r10 0x0000000000000000  0
r11 0x762ea3a4c892a0e2  8515923873539203298
r12 0x0000000000000000  0
r13 0x00007f1991740eb0  00 02 00 00 00 00 00 00 ac 69 78 91 19 7f 00 00  ········¬ix·····
r14 0x0000000000000001  1
r15 0x0000000000000001  1
rip 0x00007f19912fad04  0f 0b 48 83 ec 08 48 8d 05 6f 72 47 00 48 8d 3d  ··H·ì·H··orG·H·=
rflags 0x0000000000010206  PF
cs 0x0033  fs 0x0000  gs 0x0000
Images (16 omitted):
0x00005614a71fa000–0x00005614a8dc1cc8 befa6fd65d7c182560ba6a34dd6d4a64880ebba3 SafeGlobalMacros /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros
0x00007f19905f0000–0x00007f1990d1c168 <no build ID>                            libFoundation.so /usr/lib/swift/linux/libFoundation.so
0x00007f199119b000–0x00007f199173a6b0 <no build ID>                            libswiftCore.so  /usr/lib/swift/linux/libswiftCore.so
Backtrace took 1.06s
/host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:141:32: error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
139 | 	 Set the value to `.max` to log _everything_.
140 | 	 This is dangerous though as you can get very big logs depending on your usage. */
141 | 	@SafeGlobal public static var maxRequestBodySizeToLog: Int? = nil
    |                                `- error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
142 | 	/**
143 | 	 When receiving data from a server, should we log it?
/host/spi-builder-workspace/.build/checkouts/SafeGlobal/Sources/SafeGlobal/SafeGlobalMacro.swift:7:14: note: 'SafeGlobal()' declared here
5 | @attached(accessor)
6 | @attached(peer, names: prefixed(_))
7 | public macro SafeGlobal() = #externalMacro(module: "SafeGlobalMacros", type: "SafeGlobalMacro")
  |              `- note: 'SafeGlobal()' declared here
8 |
/host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:53:32: error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
 51 | //	public static var oslog: os.Logger? = .init(.default)
 52 | #endif
 53 | 	@SafeGlobal public static var logger: Logging.Logger? = {
    |                                `- error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
 54 | #if canImport(os)
 55 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/host/spi-builder-workspace/.build/checkouts/SafeGlobal/Sources/SafeGlobal/SafeGlobalMacro.swift:7:14: note: 'SafeGlobal()' declared here
5 | @attached(accessor)
6 | @attached(peer, names: prefixed(_))
7 | public macro SafeGlobal() = #externalMacro(module: "SafeGlobalMacros", type: "SafeGlobalMacro")
  |              `- note: 'SafeGlobal()' declared here
8 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Request Processors/AsyncBlockRequestProcessor.swift:36:44: warning: capture of 'urlRequest' with non-sendable type 'URLRequest' in a `@Sendable` closure; this is an error in the Swift 6 language mode
34 | 	public func transform(urlRequest: URLRequest, handler: @escaping @Sendable (Result<URLRequest, Error>) -> Void) {
35 | 		Task{
36 | 			do    {try await handler(.success(block(urlRequest)))}
   |                                            `- warning: capture of 'urlRequest' with non-sendable type 'URLRequest' in a `@Sendable` closure; this is an error in the Swift 6 language mode
37 | 			catch {          handler(.failure(error))}
38 | 		}
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
 1 | public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
   |               `- note: struct 'URLRequest' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURLRequest
 3 |     public typealias CachePolicy = NSURLRequest.CachePolicy
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Request Processors/AsyncBlockRequestProcessor.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
18 | import Foundation
19 | #if canImport(FoundationNetworking)
20 | import FoundationNetworking
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
21 | #endif
22 |
[313/363] Compiling URLRequestOperation RequestProcessor.swift
Swift/UnsafeRawPointer.swift:440: Fatal error: load from misaligned raw pointer
*** Signal 4: Backtracing from 0x7f19912fad04... done ***
*** Program crashed: Illegal instruction at 0x00007f19912fad04 ***
Thread 0 "SafeGlobalMacro" crashed:
0      0x00007f19912fad04 closure #1 in closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 308 in libswiftCore.so
1 [ra] 0x00007f19912faab2 closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 257 in libswiftCore.so
2 [ra] 0x00007f19912fa96d closure #1 in _assertionFailure(_:_:file:line:flags:) + 380 in libswiftCore.so
3 [ra] 0x00007f199147ea36 _assertionFailure(_:_:file:line:flags:) + 229 in libswiftCore.so
4 [ra] 0x00007f199147ec8e _fatalErrorMessage(_:_:file:line:flags:) + 45 in libswiftCore.so
5 [ra] 0x00007f1991500910 UnsafeRawBufferPointer.load<A>(fromByteOffset:as:) + 191 in libswiftCore.so
6 [ra] 0x00005614a72dab42 closure #1 in PluginHostConnection.waitForNextMessage<A>(_:) + 81 in SafeGlobalMacros at /host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:213:31
7 [ra] 0x00007f199090e3ff partial apply for closure #1 in Data.InlineData.withUnsafeBytes<A>(_:) + 30 in libFoundation.so
Registers:
rax 0x0000000000000000  0
rdx 0x0000000000000001  1
rcx 0x0000000000000002  2
rbx 0x00005611c8b0b233  94634381455923
rsi 0x0000000000000007  7
rdi 0x00005614a9f90010  02 00 00 00 02 00 02 00 01 00 01 00 00 00 02 00  ················
rbp 0x00007ffd8947c660  a0 c6 47 89 fd 7f 00 00 b2 aa 2f 91 19 7f 00 00   ÆG·ý···²ª/·····
rsp 0x00007ffd8947c650  20 00 00 00 00 00 00 00 b8 01 00 00 00 00 00 00   ·······¸·······
 r8 0x00005614a9fa3370  33 b2 b0 c8 11 56 00 00 e2 a0 92 c8 a4 a3 2e 76  3²°È·V··â ·È¤£.v
 r9 0x00007ffd8947c440  46 61 74 61 6c 20 65 72 72 6f 72 3a 20 6c 6f 61  Fatal error: loa
r10 0x0000000000000000  0
r11 0x762ea3a4c892a0e2  8515923873539203298
r12 0x0000000000000000  0
r13 0x00007f1991740eb0  00 02 00 00 00 00 00 00 ac 69 78 91 19 7f 00 00  ········¬ix·····
r14 0x0000000000000001  1
r15 0x0000000000000001  1
rip 0x00007f19912fad04  0f 0b 48 83 ec 08 48 8d 05 6f 72 47 00 48 8d 3d  ··H·ì·H··orG·H·=
rflags 0x0000000000010206  PF
cs 0x0033  fs 0x0000  gs 0x0000
Images (16 omitted):
0x00005614a71fa000–0x00005614a8dc1cc8 befa6fd65d7c182560ba6a34dd6d4a64880ebba3 SafeGlobalMacros /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros
0x00007f19905f0000–0x00007f1990d1c168 <no build ID>                            libFoundation.so /usr/lib/swift/linux/libFoundation.so
0x00007f199119b000–0x00007f199173a6b0 <no build ID>                            libswiftCore.so  /usr/lib/swift/linux/libswiftCore.so
Backtrace took 1.06s
/host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:141:32: error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
139 | 	 Set the value to `.max` to log _everything_.
140 | 	 This is dangerous though as you can get very big logs depending on your usage. */
141 | 	@SafeGlobal public static var maxRequestBodySizeToLog: Int? = nil
    |                                `- error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
142 | 	/**
143 | 	 When receiving data from a server, should we log it?
/host/spi-builder-workspace/.build/checkouts/SafeGlobal/Sources/SafeGlobal/SafeGlobalMacro.swift:7:14: note: 'SafeGlobal()' declared here
5 | @attached(accessor)
6 | @attached(peer, names: prefixed(_))
7 | public macro SafeGlobal() = #externalMacro(module: "SafeGlobalMacros", type: "SafeGlobalMacro")
  |              `- note: 'SafeGlobal()' declared here
8 |
/host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:53:32: error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
 51 | //	public static var oslog: os.Logger? = .init(.default)
 52 | #endif
 53 | 	@SafeGlobal public static var logger: Logging.Logger? = {
    |                                `- error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
 54 | #if canImport(os)
 55 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/host/spi-builder-workspace/.build/checkouts/SafeGlobal/Sources/SafeGlobal/SafeGlobalMacro.swift:7:14: note: 'SafeGlobal()' declared here
5 | @attached(accessor)
6 | @attached(peer, names: prefixed(_))
7 | public macro SafeGlobal() = #externalMacro(module: "SafeGlobalMacros", type: "SafeGlobalMacro")
  |              `- note: 'SafeGlobal()' declared here
8 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Request Processors/AsyncBlockRequestProcessor.swift:36:44: warning: capture of 'urlRequest' with non-sendable type 'URLRequest' in a `@Sendable` closure; this is an error in the Swift 6 language mode
34 | 	public func transform(urlRequest: URLRequest, handler: @escaping @Sendable (Result<URLRequest, Error>) -> Void) {
35 | 		Task{
36 | 			do    {try await handler(.success(block(urlRequest)))}
   |                                            `- warning: capture of 'urlRequest' with non-sendable type 'URLRequest' in a `@Sendable` closure; this is an error in the Swift 6 language mode
37 | 			catch {          handler(.failure(error))}
38 | 		}
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
 1 | public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
   |               `- note: struct 'URLRequest' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURLRequest
 3 |     public typealias CachePolicy = NSURLRequest.CachePolicy
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Request Processors/AsyncBlockRequestProcessor.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
18 | import Foundation
19 | #if canImport(FoundationNetworking)
20 | import FoundationNetworking
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
21 | #endif
22 |
[314/363] Compiling URLRequestOperation ResultProcessor.swift
Swift/UnsafeRawPointer.swift:440: Fatal error: load from misaligned raw pointer
*** Signal 4: Backtracing from 0x7f19912fad04... done ***
*** Program crashed: Illegal instruction at 0x00007f19912fad04 ***
Thread 0 "SafeGlobalMacro" crashed:
0      0x00007f19912fad04 closure #1 in closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 308 in libswiftCore.so
1 [ra] 0x00007f19912faab2 closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 257 in libswiftCore.so
2 [ra] 0x00007f19912fa96d closure #1 in _assertionFailure(_:_:file:line:flags:) + 380 in libswiftCore.so
3 [ra] 0x00007f199147ea36 _assertionFailure(_:_:file:line:flags:) + 229 in libswiftCore.so
4 [ra] 0x00007f199147ec8e _fatalErrorMessage(_:_:file:line:flags:) + 45 in libswiftCore.so
5 [ra] 0x00007f1991500910 UnsafeRawBufferPointer.load<A>(fromByteOffset:as:) + 191 in libswiftCore.so
6 [ra] 0x00005614a72dab42 closure #1 in PluginHostConnection.waitForNextMessage<A>(_:) + 81 in SafeGlobalMacros at /host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:213:31
7 [ra] 0x00007f199090e3ff partial apply for closure #1 in Data.InlineData.withUnsafeBytes<A>(_:) + 30 in libFoundation.so
Registers:
rax 0x0000000000000000  0
rdx 0x0000000000000001  1
rcx 0x0000000000000002  2
rbx 0x00005611c8b0b233  94634381455923
rsi 0x0000000000000007  7
rdi 0x00005614a9f90010  02 00 00 00 02 00 02 00 01 00 01 00 00 00 02 00  ················
rbp 0x00007ffd8947c660  a0 c6 47 89 fd 7f 00 00 b2 aa 2f 91 19 7f 00 00   ÆG·ý···²ª/·····
rsp 0x00007ffd8947c650  20 00 00 00 00 00 00 00 b8 01 00 00 00 00 00 00   ·······¸·······
 r8 0x00005614a9fa3370  33 b2 b0 c8 11 56 00 00 e2 a0 92 c8 a4 a3 2e 76  3²°È·V··â ·È¤£.v
 r9 0x00007ffd8947c440  46 61 74 61 6c 20 65 72 72 6f 72 3a 20 6c 6f 61  Fatal error: loa
r10 0x0000000000000000  0
r11 0x762ea3a4c892a0e2  8515923873539203298
r12 0x0000000000000000  0
r13 0x00007f1991740eb0  00 02 00 00 00 00 00 00 ac 69 78 91 19 7f 00 00  ········¬ix·····
r14 0x0000000000000001  1
r15 0x0000000000000001  1
rip 0x00007f19912fad04  0f 0b 48 83 ec 08 48 8d 05 6f 72 47 00 48 8d 3d  ··H·ì·H··orG·H·=
rflags 0x0000000000010206  PF
cs 0x0033  fs 0x0000  gs 0x0000
Images (16 omitted):
0x00005614a71fa000–0x00005614a8dc1cc8 befa6fd65d7c182560ba6a34dd6d4a64880ebba3 SafeGlobalMacros /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros
0x00007f19905f0000–0x00007f1990d1c168 <no build ID>                            libFoundation.so /usr/lib/swift/linux/libFoundation.so
0x00007f199119b000–0x00007f199173a6b0 <no build ID>                            libswiftCore.so  /usr/lib/swift/linux/libswiftCore.so
Backtrace took 1.06s
/host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:141:32: error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
139 | 	 Set the value to `.max` to log _everything_.
140 | 	 This is dangerous though as you can get very big logs depending on your usage. */
141 | 	@SafeGlobal public static var maxRequestBodySizeToLog: Int? = nil
    |                                `- error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
142 | 	/**
143 | 	 When receiving data from a server, should we log it?
/host/spi-builder-workspace/.build/checkouts/SafeGlobal/Sources/SafeGlobal/SafeGlobalMacro.swift:7:14: note: 'SafeGlobal()' declared here
5 | @attached(accessor)
6 | @attached(peer, names: prefixed(_))
7 | public macro SafeGlobal() = #externalMacro(module: "SafeGlobalMacros", type: "SafeGlobalMacro")
  |              `- note: 'SafeGlobal()' declared here
8 |
/host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:53:32: error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
 51 | //	public static var oslog: os.Logger? = .init(.default)
 52 | #endif
 53 | 	@SafeGlobal public static var logger: Logging.Logger? = {
    |                                `- error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
 54 | #if canImport(os)
 55 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/host/spi-builder-workspace/.build/checkouts/SafeGlobal/Sources/SafeGlobal/SafeGlobalMacro.swift:7:14: note: 'SafeGlobal()' declared here
5 | @attached(accessor)
6 | @attached(peer, names: prefixed(_))
7 | public macro SafeGlobal() = #externalMacro(module: "SafeGlobalMacros", type: "SafeGlobalMacro")
  |              `- note: 'SafeGlobal()' declared here
8 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Request Processors/AsyncBlockRequestProcessor.swift:36:44: warning: capture of 'urlRequest' with non-sendable type 'URLRequest' in a `@Sendable` closure; this is an error in the Swift 6 language mode
34 | 	public func transform(urlRequest: URLRequest, handler: @escaping @Sendable (Result<URLRequest, Error>) -> Void) {
35 | 		Task{
36 | 			do    {try await handler(.success(block(urlRequest)))}
   |                                            `- warning: capture of 'urlRequest' with non-sendable type 'URLRequest' in a `@Sendable` closure; this is an error in the Swift 6 language mode
37 | 			catch {          handler(.failure(error))}
38 | 		}
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
 1 | public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
   |               `- note: struct 'URLRequest' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURLRequest
 3 |     public typealias CachePolicy = NSURLRequest.CachePolicy
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Request Processors/AsyncBlockRequestProcessor.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
18 | import Foundation
19 | #if canImport(FoundationNetworking)
20 | import FoundationNetworking
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
21 | #endif
22 |
[315/363] Compiling URLRequestOperation RetryProvider.swift
Swift/UnsafeRawPointer.swift:440: Fatal error: load from misaligned raw pointer
*** Signal 4: Backtracing from 0x7f19912fad04... done ***
*** Program crashed: Illegal instruction at 0x00007f19912fad04 ***
Thread 0 "SafeGlobalMacro" crashed:
0      0x00007f19912fad04 closure #1 in closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 308 in libswiftCore.so
1 [ra] 0x00007f19912faab2 closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 257 in libswiftCore.so
2 [ra] 0x00007f19912fa96d closure #1 in _assertionFailure(_:_:file:line:flags:) + 380 in libswiftCore.so
3 [ra] 0x00007f199147ea36 _assertionFailure(_:_:file:line:flags:) + 229 in libswiftCore.so
4 [ra] 0x00007f199147ec8e _fatalErrorMessage(_:_:file:line:flags:) + 45 in libswiftCore.so
5 [ra] 0x00007f1991500910 UnsafeRawBufferPointer.load<A>(fromByteOffset:as:) + 191 in libswiftCore.so
6 [ra] 0x00005614a72dab42 closure #1 in PluginHostConnection.waitForNextMessage<A>(_:) + 81 in SafeGlobalMacros at /host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:213:31
7 [ra] 0x00007f199090e3ff partial apply for closure #1 in Data.InlineData.withUnsafeBytes<A>(_:) + 30 in libFoundation.so
Registers:
rax 0x0000000000000000  0
rdx 0x0000000000000001  1
rcx 0x0000000000000002  2
rbx 0x00005611c8b0b233  94634381455923
rsi 0x0000000000000007  7
rdi 0x00005614a9f90010  02 00 00 00 02 00 02 00 01 00 01 00 00 00 02 00  ················
rbp 0x00007ffd8947c660  a0 c6 47 89 fd 7f 00 00 b2 aa 2f 91 19 7f 00 00   ÆG·ý···²ª/·····
rsp 0x00007ffd8947c650  20 00 00 00 00 00 00 00 b8 01 00 00 00 00 00 00   ·······¸·······
 r8 0x00005614a9fa3370  33 b2 b0 c8 11 56 00 00 e2 a0 92 c8 a4 a3 2e 76  3²°È·V··â ·È¤£.v
 r9 0x00007ffd8947c440  46 61 74 61 6c 20 65 72 72 6f 72 3a 20 6c 6f 61  Fatal error: loa
r10 0x0000000000000000  0
r11 0x762ea3a4c892a0e2  8515923873539203298
r12 0x0000000000000000  0
r13 0x00007f1991740eb0  00 02 00 00 00 00 00 00 ac 69 78 91 19 7f 00 00  ········¬ix·····
r14 0x0000000000000001  1
r15 0x0000000000000001  1
rip 0x00007f19912fad04  0f 0b 48 83 ec 08 48 8d 05 6f 72 47 00 48 8d 3d  ··H·ì·H··orG·H·=
rflags 0x0000000000010206  PF
cs 0x0033  fs 0x0000  gs 0x0000
Images (16 omitted):
0x00005614a71fa000–0x00005614a8dc1cc8 befa6fd65d7c182560ba6a34dd6d4a64880ebba3 SafeGlobalMacros /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros
0x00007f19905f0000–0x00007f1990d1c168 <no build ID>                            libFoundation.so /usr/lib/swift/linux/libFoundation.so
0x00007f199119b000–0x00007f199173a6b0 <no build ID>                            libswiftCore.so  /usr/lib/swift/linux/libswiftCore.so
Backtrace took 1.06s
/host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:141:32: error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
139 | 	 Set the value to `.max` to log _everything_.
140 | 	 This is dangerous though as you can get very big logs depending on your usage. */
141 | 	@SafeGlobal public static var maxRequestBodySizeToLog: Int? = nil
    |                                `- error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
142 | 	/**
143 | 	 When receiving data from a server, should we log it?
/host/spi-builder-workspace/.build/checkouts/SafeGlobal/Sources/SafeGlobal/SafeGlobalMacro.swift:7:14: note: 'SafeGlobal()' declared here
5 | @attached(accessor)
6 | @attached(peer, names: prefixed(_))
7 | public macro SafeGlobal() = #externalMacro(module: "SafeGlobalMacros", type: "SafeGlobalMacro")
  |              `- note: 'SafeGlobal()' declared here
8 |
/host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:53:32: error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
 51 | //	public static var oslog: os.Logger? = .init(.default)
 52 | #endif
 53 | 	@SafeGlobal public static var logger: Logging.Logger? = {
    |                                `- error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
 54 | #if canImport(os)
 55 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/host/spi-builder-workspace/.build/checkouts/SafeGlobal/Sources/SafeGlobal/SafeGlobalMacro.swift:7:14: note: 'SafeGlobal()' declared here
5 | @attached(accessor)
6 | @attached(peer, names: prefixed(_))
7 | public macro SafeGlobal() = #externalMacro(module: "SafeGlobalMacros", type: "SafeGlobalMacro")
  |              `- note: 'SafeGlobal()' declared here
8 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Request Processors/AsyncBlockRequestProcessor.swift:36:44: warning: capture of 'urlRequest' with non-sendable type 'URLRequest' in a `@Sendable` closure; this is an error in the Swift 6 language mode
34 | 	public func transform(urlRequest: URLRequest, handler: @escaping @Sendable (Result<URLRequest, Error>) -> Void) {
35 | 		Task{
36 | 			do    {try await handler(.success(block(urlRequest)))}
   |                                            `- warning: capture of 'urlRequest' with non-sendable type 'URLRequest' in a `@Sendable` closure; this is an error in the Swift 6 language mode
37 | 			catch {          handler(.failure(error))}
38 | 		}
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
 1 | public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
   |               `- note: struct 'URLRequest' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURLRequest
 3 |     public typealias CachePolicy = NSURLRequest.CachePolicy
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Request Processors/AsyncBlockRequestProcessor.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
18 | import Foundation
19 | #if canImport(FoundationNetworking)
20 | import FoundationNetworking
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
21 | #endif
22 |
[316/363] Compiling URLRequestOperation URLResponseValidator.swift
Swift/UnsafeRawPointer.swift:440: Fatal error: load from misaligned raw pointer
*** Signal 4: Backtracing from 0x7f19912fad04... done ***
*** Program crashed: Illegal instruction at 0x00007f19912fad04 ***
Thread 0 "SafeGlobalMacro" crashed:
0      0x00007f19912fad04 closure #1 in closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 308 in libswiftCore.so
1 [ra] 0x00007f19912faab2 closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 257 in libswiftCore.so
2 [ra] 0x00007f19912fa96d closure #1 in _assertionFailure(_:_:file:line:flags:) + 380 in libswiftCore.so
3 [ra] 0x00007f199147ea36 _assertionFailure(_:_:file:line:flags:) + 229 in libswiftCore.so
4 [ra] 0x00007f199147ec8e _fatalErrorMessage(_:_:file:line:flags:) + 45 in libswiftCore.so
5 [ra] 0x00007f1991500910 UnsafeRawBufferPointer.load<A>(fromByteOffset:as:) + 191 in libswiftCore.so
6 [ra] 0x00005614a72dab42 closure #1 in PluginHostConnection.waitForNextMessage<A>(_:) + 81 in SafeGlobalMacros at /host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:213:31
7 [ra] 0x00007f199090e3ff partial apply for closure #1 in Data.InlineData.withUnsafeBytes<A>(_:) + 30 in libFoundation.so
Registers:
rax 0x0000000000000000  0
rdx 0x0000000000000001  1
rcx 0x0000000000000002  2
rbx 0x00005611c8b0b233  94634381455923
rsi 0x0000000000000007  7
rdi 0x00005614a9f90010  02 00 00 00 02 00 02 00 01 00 01 00 00 00 02 00  ················
rbp 0x00007ffd8947c660  a0 c6 47 89 fd 7f 00 00 b2 aa 2f 91 19 7f 00 00   ÆG·ý···²ª/·····
rsp 0x00007ffd8947c650  20 00 00 00 00 00 00 00 b8 01 00 00 00 00 00 00   ·······¸·······
 r8 0x00005614a9fa3370  33 b2 b0 c8 11 56 00 00 e2 a0 92 c8 a4 a3 2e 76  3²°È·V··â ·È¤£.v
 r9 0x00007ffd8947c440  46 61 74 61 6c 20 65 72 72 6f 72 3a 20 6c 6f 61  Fatal error: loa
r10 0x0000000000000000  0
r11 0x762ea3a4c892a0e2  8515923873539203298
r12 0x0000000000000000  0
r13 0x00007f1991740eb0  00 02 00 00 00 00 00 00 ac 69 78 91 19 7f 00 00  ········¬ix·····
r14 0x0000000000000001  1
r15 0x0000000000000001  1
rip 0x00007f19912fad04  0f 0b 48 83 ec 08 48 8d 05 6f 72 47 00 48 8d 3d  ··H·ì·H··orG·H·=
rflags 0x0000000000010206  PF
cs 0x0033  fs 0x0000  gs 0x0000
Images (16 omitted):
0x00005614a71fa000–0x00005614a8dc1cc8 befa6fd65d7c182560ba6a34dd6d4a64880ebba3 SafeGlobalMacros /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros
0x00007f19905f0000–0x00007f1990d1c168 <no build ID>                            libFoundation.so /usr/lib/swift/linux/libFoundation.so
0x00007f199119b000–0x00007f199173a6b0 <no build ID>                            libswiftCore.so  /usr/lib/swift/linux/libswiftCore.so
Backtrace took 1.06s
/host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:141:32: error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
139 | 	 Set the value to `.max` to log _everything_.
140 | 	 This is dangerous though as you can get very big logs depending on your usage. */
141 | 	@SafeGlobal public static var maxRequestBodySizeToLog: Int? = nil
    |                                `- error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
142 | 	/**
143 | 	 When receiving data from a server, should we log it?
/host/spi-builder-workspace/.build/checkouts/SafeGlobal/Sources/SafeGlobal/SafeGlobalMacro.swift:7:14: note: 'SafeGlobal()' declared here
5 | @attached(accessor)
6 | @attached(peer, names: prefixed(_))
7 | public macro SafeGlobal() = #externalMacro(module: "SafeGlobalMacros", type: "SafeGlobalMacro")
  |              `- note: 'SafeGlobal()' declared here
8 |
/host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:53:32: error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
 51 | //	public static var oslog: os.Logger? = .init(.default)
 52 | #endif
 53 | 	@SafeGlobal public static var logger: Logging.Logger? = {
    |                                `- error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
 54 | #if canImport(os)
 55 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/host/spi-builder-workspace/.build/checkouts/SafeGlobal/Sources/SafeGlobal/SafeGlobalMacro.swift:7:14: note: 'SafeGlobal()' declared here
5 | @attached(accessor)
6 | @attached(peer, names: prefixed(_))
7 | public macro SafeGlobal() = #externalMacro(module: "SafeGlobalMacros", type: "SafeGlobalMacro")
  |              `- note: 'SafeGlobal()' declared here
8 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Request Processors/AsyncBlockRequestProcessor.swift:36:44: warning: capture of 'urlRequest' with non-sendable type 'URLRequest' in a `@Sendable` closure; this is an error in the Swift 6 language mode
34 | 	public func transform(urlRequest: URLRequest, handler: @escaping @Sendable (Result<URLRequest, Error>) -> Void) {
35 | 		Task{
36 | 			do    {try await handler(.success(block(urlRequest)))}
   |                                            `- warning: capture of 'urlRequest' with non-sendable type 'URLRequest' in a `@Sendable` closure; this is an error in the Swift 6 language mode
37 | 			catch {          handler(.failure(error))}
38 | 		}
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
 1 | public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
   |               `- note: struct 'URLRequest' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURLRequest
 3 |     public typealias CachePolicy = NSURLRequest.CachePolicy
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Request Processors/AsyncBlockRequestProcessor.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
18 | import Foundation
19 | #if canImport(FoundationNetworking)
20 | import FoundationNetworking
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
21 | #endif
22 |
[317/363] Compiling URLRequestOperation AsyncBlockRequestProcessor.swift
Swift/UnsafeRawPointer.swift:440: Fatal error: load from misaligned raw pointer
*** Signal 4: Backtracing from 0x7f19912fad04... done ***
*** Program crashed: Illegal instruction at 0x00007f19912fad04 ***
Thread 0 "SafeGlobalMacro" crashed:
0      0x00007f19912fad04 closure #1 in closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 308 in libswiftCore.so
1 [ra] 0x00007f19912faab2 closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 257 in libswiftCore.so
2 [ra] 0x00007f19912fa96d closure #1 in _assertionFailure(_:_:file:line:flags:) + 380 in libswiftCore.so
3 [ra] 0x00007f199147ea36 _assertionFailure(_:_:file:line:flags:) + 229 in libswiftCore.so
4 [ra] 0x00007f199147ec8e _fatalErrorMessage(_:_:file:line:flags:) + 45 in libswiftCore.so
5 [ra] 0x00007f1991500910 UnsafeRawBufferPointer.load<A>(fromByteOffset:as:) + 191 in libswiftCore.so
6 [ra] 0x00005614a72dab42 closure #1 in PluginHostConnection.waitForNextMessage<A>(_:) + 81 in SafeGlobalMacros at /host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:213:31
7 [ra] 0x00007f199090e3ff partial apply for closure #1 in Data.InlineData.withUnsafeBytes<A>(_:) + 30 in libFoundation.so
Registers:
rax 0x0000000000000000  0
rdx 0x0000000000000001  1
rcx 0x0000000000000002  2
rbx 0x00005611c8b0b233  94634381455923
rsi 0x0000000000000007  7
rdi 0x00005614a9f90010  02 00 00 00 02 00 02 00 01 00 01 00 00 00 02 00  ················
rbp 0x00007ffd8947c660  a0 c6 47 89 fd 7f 00 00 b2 aa 2f 91 19 7f 00 00   ÆG·ý···²ª/·····
rsp 0x00007ffd8947c650  20 00 00 00 00 00 00 00 b8 01 00 00 00 00 00 00   ·······¸·······
 r8 0x00005614a9fa3370  33 b2 b0 c8 11 56 00 00 e2 a0 92 c8 a4 a3 2e 76  3²°È·V··â ·È¤£.v
 r9 0x00007ffd8947c440  46 61 74 61 6c 20 65 72 72 6f 72 3a 20 6c 6f 61  Fatal error: loa
r10 0x0000000000000000  0
r11 0x762ea3a4c892a0e2  8515923873539203298
r12 0x0000000000000000  0
r13 0x00007f1991740eb0  00 02 00 00 00 00 00 00 ac 69 78 91 19 7f 00 00  ········¬ix·····
r14 0x0000000000000001  1
r15 0x0000000000000001  1
rip 0x00007f19912fad04  0f 0b 48 83 ec 08 48 8d 05 6f 72 47 00 48 8d 3d  ··H·ì·H··orG·H·=
rflags 0x0000000000010206  PF
cs 0x0033  fs 0x0000  gs 0x0000
Images (16 omitted):
0x00005614a71fa000–0x00005614a8dc1cc8 befa6fd65d7c182560ba6a34dd6d4a64880ebba3 SafeGlobalMacros /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros
0x00007f19905f0000–0x00007f1990d1c168 <no build ID>                            libFoundation.so /usr/lib/swift/linux/libFoundation.so
0x00007f199119b000–0x00007f199173a6b0 <no build ID>                            libswiftCore.so  /usr/lib/swift/linux/libswiftCore.so
Backtrace took 1.06s
/host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:141:32: error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
139 | 	 Set the value to `.max` to log _everything_.
140 | 	 This is dangerous though as you can get very big logs depending on your usage. */
141 | 	@SafeGlobal public static var maxRequestBodySizeToLog: Int? = nil
    |                                `- error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
142 | 	/**
143 | 	 When receiving data from a server, should we log it?
/host/spi-builder-workspace/.build/checkouts/SafeGlobal/Sources/SafeGlobal/SafeGlobalMacro.swift:7:14: note: 'SafeGlobal()' declared here
5 | @attached(accessor)
6 | @attached(peer, names: prefixed(_))
7 | public macro SafeGlobal() = #externalMacro(module: "SafeGlobalMacros", type: "SafeGlobalMacro")
  |              `- note: 'SafeGlobal()' declared here
8 |
/host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:53:32: error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
 51 | //	public static var oslog: os.Logger? = .init(.default)
 52 | #endif
 53 | 	@SafeGlobal public static var logger: Logging.Logger? = {
    |                                `- error: external macro implementation type 'SafeGlobalMacros.SafeGlobalMacro' could not be found for macro 'SafeGlobal()'; '/host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros' produced malformed response
 54 | #if canImport(os)
 55 | 		if #available(macOS 10.12, tvOS 10.0, iOS 10.0, watchOS 3.0, *) {
/host/spi-builder-workspace/.build/checkouts/SafeGlobal/Sources/SafeGlobal/SafeGlobalMacro.swift:7:14: note: 'SafeGlobal()' declared here
5 | @attached(accessor)
6 | @attached(peer, names: prefixed(_))
7 | public macro SafeGlobal() = #externalMacro(module: "SafeGlobalMacros", type: "SafeGlobalMacro")
  |              `- note: 'SafeGlobal()' declared here
8 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Request Processors/AsyncBlockRequestProcessor.swift:36:44: warning: capture of 'urlRequest' with non-sendable type 'URLRequest' in a `@Sendable` closure; this is an error in the Swift 6 language mode
34 | 	public func transform(urlRequest: URLRequest, handler: @escaping @Sendable (Result<URLRequest, Error>) -> Void) {
35 | 		Task{
36 | 			do    {try await handler(.success(block(urlRequest)))}
   |                                            `- warning: capture of 'urlRequest' with non-sendable type 'URLRequest' in a `@Sendable` closure; this is an error in the Swift 6 language mode
37 | 			catch {          handler(.failure(error))}
38 | 		}
FoundationNetworking.URLRequest:1:15: note: struct 'URLRequest' does not conform to the 'Sendable' protocol
 1 | public struct URLRequest : ReferenceConvertible, Equatable, Hashable {
   |               `- note: struct 'URLRequest' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURLRequest
 3 |     public typealias CachePolicy = NSURLRequest.CachePolicy
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Request Processors/AsyncBlockRequestProcessor.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
18 | import Foundation
19 | #if canImport(FoundationNetworking)
20 | import FoundationNetworking
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
21 | #endif
22 |
error: compile command failed due to signal 6 (use -v to see invocation)
[318/363] Compiling URLRequestOperation BlockRequestProcessor.swift
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:72:42: warning: capture of 'u' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 | 		self.transformHandler = { s, u, h in
 71 | 			dispatcher.execute{
 72 | 				rp.transform(source: s, urlResponse: u, handler: h)
    |                                          `- warning: capture of 'u' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 73 | 			}
 74 | 		}
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 16 | import Foundation
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 19 | #endif
 20 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:102:66: warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 | 			rp1.transform(source: source, urlResponse: response, handler: { result in
101 | 				switch result {
102 | 					case .success(let v): rp2.transform(source: v, urlResponse: response, handler: handler)
    |                                                                  `- warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
103 | 					case .failure(let e): handler(.failure(e))
104 | 				}
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:118:66: warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
116 | 				switch result {
117 | 					case .success: handler(result)
118 | 					case .failure(let e): rp2.transform(source: e, urlResponse: response, handler: handler)
    |                                                                  `- warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
119 | 				}
120 | 			})
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/DecodeHTTPContentResultProcessor.swift:90:7: warning: associated value 'noOrInvalidContentType' of 'Sendable'-conforming enum 'DecodeHTTPContentResultProcessorError' has non-sendable type 'URLResponse'; this is an error in the Swift 6 language mode
 88 |
 89 | 	/** The URL response does not have or have an invalid content type (or is not an HTTP URL response). */
 90 | 	case noOrInvalidContentType(URLResponse)
    |       `- warning: associated value 'noOrInvalidContentType' of 'Sendable'-conforming enum 'DecodeHTTPContentResultProcessorError' has non-sendable type 'URLResponse'; this is an error in the Swift 6 language mode
 91 |
 92 | 	/** No decoders are configured for the content type in the response. */
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/DecodeHTTPContentResultProcessor.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 16 | import Foundation
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 19 | #endif
 20 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:28:15: warning: type 'URLMoveResultProcessor.ResultType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 26 |
 27 | /** Throws ``URLMoveResultProcessorError`` errors. */
 28 | public struct URLMoveResultProcessor : ResultProcessor, @unchecked Sendable {
    |               `- warning: type 'URLMoveResultProcessor.ResultType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 29 |
 30 | 	public enum MoveBehavior : Sendable {
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:16:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 14 | limitations under the License. */
 15 |
 16 | import Foundation
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:28:15: warning: type 'URLMoveResultProcessor.SourceType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 26 |
 27 | /** Throws ``URLMoveResultProcessorError`` errors. */
 28 | public struct URLMoveResultProcessor : ResultProcessor, @unchecked Sendable {
    |               `- warning: type 'URLMoveResultProcessor.SourceType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 29 |
 30 | 	public enum MoveBehavior : Sendable {
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
[319/363] Compiling URLRequestOperation AnyResultProcessor.swift
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:72:42: warning: capture of 'u' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 | 		self.transformHandler = { s, u, h in
 71 | 			dispatcher.execute{
 72 | 				rp.transform(source: s, urlResponse: u, handler: h)
    |                                          `- warning: capture of 'u' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 73 | 			}
 74 | 		}
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 16 | import Foundation
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 19 | #endif
 20 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:102:66: warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 | 			rp1.transform(source: source, urlResponse: response, handler: { result in
101 | 				switch result {
102 | 					case .success(let v): rp2.transform(source: v, urlResponse: response, handler: handler)
    |                                                                  `- warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
103 | 					case .failure(let e): handler(.failure(e))
104 | 				}
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:118:66: warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
116 | 				switch result {
117 | 					case .success: handler(result)
118 | 					case .failure(let e): rp2.transform(source: e, urlResponse: response, handler: handler)
    |                                                                  `- warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
119 | 				}
120 | 			})
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/DecodeHTTPContentResultProcessor.swift:90:7: warning: associated value 'noOrInvalidContentType' of 'Sendable'-conforming enum 'DecodeHTTPContentResultProcessorError' has non-sendable type 'URLResponse'; this is an error in the Swift 6 language mode
 88 |
 89 | 	/** The URL response does not have or have an invalid content type (or is not an HTTP URL response). */
 90 | 	case noOrInvalidContentType(URLResponse)
    |       `- warning: associated value 'noOrInvalidContentType' of 'Sendable'-conforming enum 'DecodeHTTPContentResultProcessorError' has non-sendable type 'URLResponse'; this is an error in the Swift 6 language mode
 91 |
 92 | 	/** No decoders are configured for the content type in the response. */
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/DecodeHTTPContentResultProcessor.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 16 | import Foundation
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 19 | #endif
 20 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:28:15: warning: type 'URLMoveResultProcessor.ResultType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 26 |
 27 | /** Throws ``URLMoveResultProcessorError`` errors. */
 28 | public struct URLMoveResultProcessor : ResultProcessor, @unchecked Sendable {
    |               `- warning: type 'URLMoveResultProcessor.ResultType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 29 |
 30 | 	public enum MoveBehavior : Sendable {
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:16:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 14 | limitations under the License. */
 15 |
 16 | import Foundation
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:28:15: warning: type 'URLMoveResultProcessor.SourceType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 26 |
 27 | /** Throws ``URLMoveResultProcessorError`` errors. */
 28 | public struct URLMoveResultProcessor : ResultProcessor, @unchecked Sendable {
    |               `- warning: type 'URLMoveResultProcessor.SourceType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 29 |
 30 | 	public enum MoveBehavior : Sendable {
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
[320/363] Compiling URLRequestOperation DecodeDataResultProcessor.swift
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:72:42: warning: capture of 'u' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 | 		self.transformHandler = { s, u, h in
 71 | 			dispatcher.execute{
 72 | 				rp.transform(source: s, urlResponse: u, handler: h)
    |                                          `- warning: capture of 'u' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 73 | 			}
 74 | 		}
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 16 | import Foundation
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 19 | #endif
 20 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:102:66: warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 | 			rp1.transform(source: source, urlResponse: response, handler: { result in
101 | 				switch result {
102 | 					case .success(let v): rp2.transform(source: v, urlResponse: response, handler: handler)
    |                                                                  `- warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
103 | 					case .failure(let e): handler(.failure(e))
104 | 				}
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:118:66: warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
116 | 				switch result {
117 | 					case .success: handler(result)
118 | 					case .failure(let e): rp2.transform(source: e, urlResponse: response, handler: handler)
    |                                                                  `- warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
119 | 				}
120 | 			})
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/DecodeHTTPContentResultProcessor.swift:90:7: warning: associated value 'noOrInvalidContentType' of 'Sendable'-conforming enum 'DecodeHTTPContentResultProcessorError' has non-sendable type 'URLResponse'; this is an error in the Swift 6 language mode
 88 |
 89 | 	/** The URL response does not have or have an invalid content type (or is not an HTTP URL response). */
 90 | 	case noOrInvalidContentType(URLResponse)
    |       `- warning: associated value 'noOrInvalidContentType' of 'Sendable'-conforming enum 'DecodeHTTPContentResultProcessorError' has non-sendable type 'URLResponse'; this is an error in the Swift 6 language mode
 91 |
 92 | 	/** No decoders are configured for the content type in the response. */
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/DecodeHTTPContentResultProcessor.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 16 | import Foundation
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 19 | #endif
 20 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:28:15: warning: type 'URLMoveResultProcessor.ResultType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 26 |
 27 | /** Throws ``URLMoveResultProcessorError`` errors. */
 28 | public struct URLMoveResultProcessor : ResultProcessor, @unchecked Sendable {
    |               `- warning: type 'URLMoveResultProcessor.ResultType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 29 |
 30 | 	public enum MoveBehavior : Sendable {
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:16:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 14 | limitations under the License. */
 15 |
 16 | import Foundation
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:28:15: warning: type 'URLMoveResultProcessor.SourceType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 26 |
 27 | /** Throws ``URLMoveResultProcessorError`` errors. */
 28 | public struct URLMoveResultProcessor : ResultProcessor, @unchecked Sendable {
    |               `- warning: type 'URLMoveResultProcessor.SourceType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 29 |
 30 | 	public enum MoveBehavior : Sendable {
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
[321/363] Compiling URLRequestOperation DecodeHTTPContentResultProcessor.swift
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:72:42: warning: capture of 'u' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 | 		self.transformHandler = { s, u, h in
 71 | 			dispatcher.execute{
 72 | 				rp.transform(source: s, urlResponse: u, handler: h)
    |                                          `- warning: capture of 'u' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 73 | 			}
 74 | 		}
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 16 | import Foundation
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 19 | #endif
 20 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:102:66: warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 | 			rp1.transform(source: source, urlResponse: response, handler: { result in
101 | 				switch result {
102 | 					case .success(let v): rp2.transform(source: v, urlResponse: response, handler: handler)
    |                                                                  `- warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
103 | 					case .failure(let e): handler(.failure(e))
104 | 				}
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:118:66: warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
116 | 				switch result {
117 | 					case .success: handler(result)
118 | 					case .failure(let e): rp2.transform(source: e, urlResponse: response, handler: handler)
    |                                                                  `- warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
119 | 				}
120 | 			})
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/DecodeHTTPContentResultProcessor.swift:90:7: warning: associated value 'noOrInvalidContentType' of 'Sendable'-conforming enum 'DecodeHTTPContentResultProcessorError' has non-sendable type 'URLResponse'; this is an error in the Swift 6 language mode
 88 |
 89 | 	/** The URL response does not have or have an invalid content type (or is not an HTTP URL response). */
 90 | 	case noOrInvalidContentType(URLResponse)
    |       `- warning: associated value 'noOrInvalidContentType' of 'Sendable'-conforming enum 'DecodeHTTPContentResultProcessorError' has non-sendable type 'URLResponse'; this is an error in the Swift 6 language mode
 91 |
 92 | 	/** No decoders are configured for the content type in the response. */
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/DecodeHTTPContentResultProcessor.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 16 | import Foundation
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 19 | #endif
 20 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:28:15: warning: type 'URLMoveResultProcessor.ResultType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 26 |
 27 | /** Throws ``URLMoveResultProcessorError`` errors. */
 28 | public struct URLMoveResultProcessor : ResultProcessor, @unchecked Sendable {
    |               `- warning: type 'URLMoveResultProcessor.ResultType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 29 |
 30 | 	public enum MoveBehavior : Sendable {
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:16:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 14 | limitations under the License. */
 15 |
 16 | import Foundation
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:28:15: warning: type 'URLMoveResultProcessor.SourceType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 26 |
 27 | /** Throws ``URLMoveResultProcessorError`` errors. */
 28 | public struct URLMoveResultProcessor : ResultProcessor, @unchecked Sendable {
    |               `- warning: type 'URLMoveResultProcessor.SourceType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 29 |
 30 | 	public enum MoveBehavior : Sendable {
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
[322/363] Compiling URLRequestOperation HTTPStatusCodeCheckResultProcessor.swift
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:72:42: warning: capture of 'u' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 | 		self.transformHandler = { s, u, h in
 71 | 			dispatcher.execute{
 72 | 				rp.transform(source: s, urlResponse: u, handler: h)
    |                                          `- warning: capture of 'u' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 73 | 			}
 74 | 		}
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 16 | import Foundation
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 19 | #endif
 20 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:102:66: warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 | 			rp1.transform(source: source, urlResponse: response, handler: { result in
101 | 				switch result {
102 | 					case .success(let v): rp2.transform(source: v, urlResponse: response, handler: handler)
    |                                                                  `- warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
103 | 					case .failure(let e): handler(.failure(e))
104 | 				}
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:118:66: warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
116 | 				switch result {
117 | 					case .success: handler(result)
118 | 					case .failure(let e): rp2.transform(source: e, urlResponse: response, handler: handler)
    |                                                                  `- warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
119 | 				}
120 | 			})
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/DecodeHTTPContentResultProcessor.swift:90:7: warning: associated value 'noOrInvalidContentType' of 'Sendable'-conforming enum 'DecodeHTTPContentResultProcessorError' has non-sendable type 'URLResponse'; this is an error in the Swift 6 language mode
 88 |
 89 | 	/** The URL response does not have or have an invalid content type (or is not an HTTP URL response). */
 90 | 	case noOrInvalidContentType(URLResponse)
    |       `- warning: associated value 'noOrInvalidContentType' of 'Sendable'-conforming enum 'DecodeHTTPContentResultProcessorError' has non-sendable type 'URLResponse'; this is an error in the Swift 6 language mode
 91 |
 92 | 	/** No decoders are configured for the content type in the response. */
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/DecodeHTTPContentResultProcessor.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 16 | import Foundation
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 19 | #endif
 20 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:28:15: warning: type 'URLMoveResultProcessor.ResultType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 26 |
 27 | /** Throws ``URLMoveResultProcessorError`` errors. */
 28 | public struct URLMoveResultProcessor : ResultProcessor, @unchecked Sendable {
    |               `- warning: type 'URLMoveResultProcessor.ResultType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 29 |
 30 | 	public enum MoveBehavior : Sendable {
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:16:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 14 | limitations under the License. */
 15 |
 16 | import Foundation
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:28:15: warning: type 'URLMoveResultProcessor.SourceType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 26 |
 27 | /** Throws ``URLMoveResultProcessorError`` errors. */
 28 | public struct URLMoveResultProcessor : ResultProcessor, @unchecked Sendable {
    |               `- warning: type 'URLMoveResultProcessor.SourceType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 29 |
 30 | 	public enum MoveBehavior : Sendable {
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
[323/363] Compiling URLRequestOperation RecoverHTTPStatusCodeCheckErrorResultProcessor.swift
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:72:42: warning: capture of 'u' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 | 		self.transformHandler = { s, u, h in
 71 | 			dispatcher.execute{
 72 | 				rp.transform(source: s, urlResponse: u, handler: h)
    |                                          `- warning: capture of 'u' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 73 | 			}
 74 | 		}
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 16 | import Foundation
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 19 | #endif
 20 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:102:66: warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 | 			rp1.transform(source: source, urlResponse: response, handler: { result in
101 | 				switch result {
102 | 					case .success(let v): rp2.transform(source: v, urlResponse: response, handler: handler)
    |                                                                  `- warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
103 | 					case .failure(let e): handler(.failure(e))
104 | 				}
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:118:66: warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
116 | 				switch result {
117 | 					case .success: handler(result)
118 | 					case .failure(let e): rp2.transform(source: e, urlResponse: response, handler: handler)
    |                                                                  `- warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
119 | 				}
120 | 			})
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/DecodeHTTPContentResultProcessor.swift:90:7: warning: associated value 'noOrInvalidContentType' of 'Sendable'-conforming enum 'DecodeHTTPContentResultProcessorError' has non-sendable type 'URLResponse'; this is an error in the Swift 6 language mode
 88 |
 89 | 	/** The URL response does not have or have an invalid content type (or is not an HTTP URL response). */
 90 | 	case noOrInvalidContentType(URLResponse)
    |       `- warning: associated value 'noOrInvalidContentType' of 'Sendable'-conforming enum 'DecodeHTTPContentResultProcessorError' has non-sendable type 'URLResponse'; this is an error in the Swift 6 language mode
 91 |
 92 | 	/** No decoders are configured for the content type in the response. */
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/DecodeHTTPContentResultProcessor.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 16 | import Foundation
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 19 | #endif
 20 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:28:15: warning: type 'URLMoveResultProcessor.ResultType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 26 |
 27 | /** Throws ``URLMoveResultProcessorError`` errors. */
 28 | public struct URLMoveResultProcessor : ResultProcessor, @unchecked Sendable {
    |               `- warning: type 'URLMoveResultProcessor.ResultType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 29 |
 30 | 	public enum MoveBehavior : Sendable {
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:16:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 14 | limitations under the License. */
 15 |
 16 | import Foundation
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:28:15: warning: type 'URLMoveResultProcessor.SourceType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 26 |
 27 | /** Throws ``URLMoveResultProcessorError`` errors. */
 28 | public struct URLMoveResultProcessor : ResultProcessor, @unchecked Sendable {
    |               `- warning: type 'URLMoveResultProcessor.SourceType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 29 |
 30 | 	public enum MoveBehavior : Sendable {
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
[324/363] Compiling URLRequestOperation URLMoveResultProcessor.swift
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:72:42: warning: capture of 'u' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 | 		self.transformHandler = { s, u, h in
 71 | 			dispatcher.execute{
 72 | 				rp.transform(source: s, urlResponse: u, handler: h)
    |                                          `- warning: capture of 'u' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 73 | 			}
 74 | 		}
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 16 | import Foundation
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 19 | #endif
 20 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:102:66: warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 | 			rp1.transform(source: source, urlResponse: response, handler: { result in
101 | 				switch result {
102 | 					case .success(let v): rp2.transform(source: v, urlResponse: response, handler: handler)
    |                                                                  `- warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
103 | 					case .failure(let e): handler(.failure(e))
104 | 				}
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift:118:66: warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
116 | 				switch result {
117 | 					case .success: handler(result)
118 | 					case .failure(let e): rp2.transform(source: e, urlResponse: response, handler: handler)
    |                                                                  `- warning: capture of 'response' with non-sendable type 'URLResponse' in a `@Sendable` closure; this is an error in the Swift 6 language mode
119 | 				}
120 | 			})
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/DecodeHTTPContentResultProcessor.swift:90:7: warning: associated value 'noOrInvalidContentType' of 'Sendable'-conforming enum 'DecodeHTTPContentResultProcessorError' has non-sendable type 'URLResponse'; this is an error in the Swift 6 language mode
 88 |
 89 | 	/** The URL response does not have or have an invalid content type (or is not an HTTP URL response). */
 90 | 	case noOrInvalidContentType(URLResponse)
    |       `- warning: associated value 'noOrInvalidContentType' of 'Sendable'-conforming enum 'DecodeHTTPContentResultProcessorError' has non-sendable type 'URLResponse'; this is an error in the Swift 6 language mode
 91 |
 92 | 	/** No decoders are configured for the content type in the response. */
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
 1 | open class URLResponse : NSObject, NSSecureCoding, NSCopying {
   |            `- note: class 'URLResponse' does not conform to the 'Sendable' protocol
 2 |     public static var supportsSecureCoding: Bool { get }
 3 |     required public init?(coder aDecoder: NSCoder)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/DecodeHTTPContentResultProcessor.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 16 | import Foundation
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
 19 | #endif
 20 |
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:28:15: warning: type 'URLMoveResultProcessor.ResultType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 26 |
 27 | /** Throws ``URLMoveResultProcessorError`` errors. */
 28 | public struct URLMoveResultProcessor : ResultProcessor, @unchecked Sendable {
    |               `- warning: type 'URLMoveResultProcessor.ResultType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 29 |
 30 | 	public enum MoveBehavior : Sendable {
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:16:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 14 | limitations under the License. */
 15 |
 16 | import Foundation
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
 17 | #if canImport(FoundationNetworking)
 18 | import FoundationNetworking
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:28:15: warning: type 'URLMoveResultProcessor.SourceType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 26 |
 27 | /** Throws ``URLMoveResultProcessorError`` errors. */
 28 | public struct URLMoveResultProcessor : ResultProcessor, @unchecked Sendable {
    |               `- warning: type 'URLMoveResultProcessor.SourceType' (aka 'URL') does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
 29 |
 30 | 	public enum MoveBehavior : Sendable {
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift:87:67: warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 85 | 			}
 86 |
 87 | 			try MyErr.wrapInFileManagerError{ try fileManager.moveItem(at: source, to: destinationURL) }
    |                                                                   `- warning: capture of 'source' with non-sendable type 'URL' in an isolated closure; this is an error in the Swift 6 language mode
 88 | 			return destinationURL
 89 | 		})}
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
 1 | public struct URL : ReferenceConvertible, Equatable {
   |               `- note: struct 'URL' does not conform to the 'Sendable' protocol
 2 |     public typealias ReferenceType = NSURL
 3 |     public init?(string: String)
Swift/UnsafeRawPointer.swift:440: Fatal error: load from misaligned raw pointer
*** Signal 4: Backtracing from 0x7f0d07180d04... done ***
*** Program crashed: Illegal instruction at 0x00007f0d07180d04 ***
Thread 0 "SafeGlobalMacro" crashed:
0      0x00007f0d07180d04 closure #1 in closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 308 in libswiftCore.so
1 [ra] 0x00007f0d07180ab2 closure #1 in closure #1 in _assertionFailure(_:_:file:line:flags:) + 257 in libswiftCore.so
2 [ra] 0x00007f0d0718096d closure #1 in _assertionFailure(_:_:file:line:flags:) + 380 in libswiftCore.so
3 [ra] 0x00007f0d07304a36 _assertionFailure(_:_:file:line:flags:) + 229 in libswiftCore.so
4 [ra] 0x00007f0d07304c8e _fatalErrorMessage(_:_:file:line:flags:) + 45 in libswiftCore.so
5 [ra] 0x00007f0d07386910 UnsafeRawBufferPointer.load<A>(fromByteOffset:as:) + 191 in libswiftCore.so
6 [ra] 0x0000559022a8db42 closure #1 in PluginHostConnection.waitForNextMessage<A>(_:) + 81 in SafeGlobalMacros at /host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftCompilerPlugin/CompilerPlugin.swift:213:31
7 [ra] 0x00007f0d067943ff partial apply for closure #1 in Data.InlineData.withUnsafeBytes<A>(_:) + 30 in libFoundation.so
Registers:
rax 0x0000000000000000  0
rdx 0x0000000000000001  1
rcx 0x0000000000000002  2
rbx 0x000055957d8765c3  94100544513475
rsi 0x0000000000000007  7
rdi 0x0000559024840010  02 00 00 00 02 00 02 00 01 00 01 00 00 00 02 00  ················
rbp 0x00007ffdb6483000  40 30 48 b6 fd 7f 00 00 b2 0a 18 07 0d 7f 00 00  @0H¶ý···²·······
rsp 0x00007ffdb6482ff0  20 00 00 00 00 00 00 00 b8 01 00 00 00 00 00 00   ·······¸·······
 r8 0x0000559024853370  c3 65 87 7d 95 55 00 00 6a bd 14 a1 de d9 f2 4c  Ãe·}·U··j½·¡ÞÙòL
 r9 0x00007ffdb6482de0  46 61 74 61 6c 20 65 72 72 6f 72 3a 20 6c 6f 61  Fatal error: loa
r10 0x0000000000000000  0
r11 0x4cf2d9dea114bd6a  5544733641454959978
r12 0x0000000000000000  0
r13 0x00007f0d075c6eb0  00 02 00 00 00 00 00 00 ac c9 60 07 0d 7f 00 00  ········¬É`·····
r14 0x0000000000000001  1
r15 0x0000000000000001  1
rip 0x00007f0d07180d04  0f 0b 48 83 ec 08 48 8d 05 6f 72 47 00 48 8d 3d  ··H·ì·H··orG·H·=
rflags 0x0000000000010206  PF
cs 0x0033  fs 0x0000  gs 0x0000
Images (16 omitted):
0x00005590229ad000–0x0000559024574cc8 befa6fd65d7c182560ba6a34dd6d4a64880ebba3 SafeGlobalMacros /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros
0x00007f0d06476000–0x00007f0d06ba2168 <no build ID>                            libFoundation.so /usr/lib/swift/linux/libFoundation.so
0x00007f0d07021000–0x00007f0d075c06b0 <no build ID>                            libswiftCore.so  /usr/lib/swift/linux/libswiftCore.so
Backtrace took 1.12s
swift-frontend: /home/build-user/swift/lib/Sema/TypeCheckStorage.cpp:3850: swift::StorageImplInfo swift::StorageImplInfoRequest::evaluate(swift::Evaluator &, swift::AbstractStorageDecl *) const: Assertion `info.hasStorage() == storage->hasStorage() || storage->getASTContext().Diags.hadAnyError()' failed.
Please submit a bug report (https://swift.org/contributing/#reporting-bugs) and include the crash backtrace.
Stack dump:
0.	Program arguments: /usr/bin/swift-frontend -frontend -c /host/spi-builder-workspace/Sources/URLRequestOperation/Glue/BlockDispatcher.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+FormURLEncodedEncoding.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder+JSON.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPContentCoder.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Glue/HTTPURLResponse+Utils.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Glue/LinuxWeakToWeakMapTable.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Glue/LogMetadataKeys.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Glue/NSLock+Linux.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Glue/Result+Utils.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Glue/RetryCountsHolder.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Glue/String+Utils.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Glue/URL+Utils.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Glue/URLQueryCoder+HTTPContentCoder+FormURLEncodedEncoding.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Glue/URLQueryCoder.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Glue/URLRequest+Utils.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Glue/URLSession+Linux.swift "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helper Protocols/RequestProcessor.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helper Protocols/ResultProcessor.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helper Protocols/RetryProvider.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helper Protocols/URLResponseValidator.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Request Processors/AsyncBlockRequestProcessor.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Request Processors/BlockRequestProcessor.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/AnyResultProcessor.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/DecodeDataResultProcessor.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/DecodeHTTPContentResultProcessor.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/HTTPStatusCodeCheckResultProcessor.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/RecoverHTTPStatusCodeCheckErrorResultProcessor.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLMoveResultProcessor.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Result Processors/URLToFileHandleResultProcessor.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Retry Helpers/OtherSuccessRetryHelper.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Retry Helpers/ReachabilityRetryHelper.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Retry Providers/NetworkErrorRetryProvider.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/Retry Providers/UnretriedErrorsRetryProvider.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/Helpers/URL Response Validators/HTTPStatusCodeURLResponseValidator.swift" /host/spi-builder-workspace/Sources/URLRequestOperation/Operations/URLRequestDataOperation+APIs-TypedError.swift -primary-file /host/spi-builder-workspace/Sources/URLRequestOperation/Operations/URLRequestDataOperation+APIs-UntypedError.swift -primary-file /host/spi-builder-workspace/Sources/URLRequestOperation/Operations/URLRequestDataOperation+Data.swift -primary-file /host/spi-builder-workspace/Sources/URLRequestOperation/Operations/URLRequestDataOperation+Images.swift -primary-file /host/spi-builder-workspace/Sources/URLRequestOperation/Operations/URLRequestDataOperation+String.swift -primary-file /host/spi-builder-workspace/Sources/URLRequestOperation/Operations/URLRequestDataOperation.swift -primary-file /host/spi-builder-workspace/Sources/URLRequestOperation/Operations/URLRequestDownloadOperation+Open.swift -primary-file /host/spi-builder-workspace/Sources/URLRequestOperation/Operations/URLRequestDownloadOperation+Save.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Operations/URLRequestDownloadOperation.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Operations/URLRequestStreamOperation.swift "/host/spi-builder-workspace/Sources/URLRequestOperation/Public Session Delegate/URLRequestOperationSessionDelegate.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Public Session Delegate/URLRequestOperationSessionDelegateProxy.swift" "/host/spi-builder-workspace/Sources/URLRequestOperation/Public Session Delegate/URLSessionDelegates.swift" /host/spi-builder-workspace/Sources/URLRequestOperation/Reachability/NotifNameGetter.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Reachability/ReachabilityObserver.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Reachability/ReachabilitySubscriber.swift /host/spi-builder-workspace/Sources/URLRequestOperation/Reachability/SockaddrWrapper.swift /host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperation.swift /host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift /host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationErrors.swift /host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationResult.swift -supplementary-output-file-map /tmp/TemporaryDirectory.6b6KEV/supplementaryOutputs-6 -target x86_64-unknown-linux-gnu -disable-objc-interop -I /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/Modules -enable-testing -g -debug-info-format=dwarf -dwarf-version=4 -module-cache-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/ModuleCache -swift-version 5 -Onone -D SWIFT_PACKAGE -D DEBUG -stats-output-dir .stats -load-plugin-executable /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/SafeGlobalMacros#SafeGlobalMacros -strict-concurrency=complete -empty-abi-descriptor -resource-dir /usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /host/spi-builder-workspace -Xcc -fPIC -Xcc -g -Xcc -fno-omit-frame-pointer -module-name URLRequestOperation -plugin-path /usr/lib/swift/host/plugins -plugin-path /usr/local/lib/swift/host/plugins -parse-as-library -o /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/URLRequestOperation.build/URLRequestDataOperation+APIs-UntypedError.swift.o -o /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/URLRequestOperation.build/URLRequestDataOperation+Data.swift.o -o /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/URLRequestOperation.build/URLRequestDataOperation+Images.swift.o -o /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/URLRequestOperation.build/URLRequestDataOperation+String.swift.o -o /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/URLRequestOperation.build/URLRequestDataOperation.swift.o -o /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/URLRequestOperation.build/URLRequestDownloadOperation+Open.swift.o -o /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/URLRequestOperation.build/URLRequestDownloadOperation+Save.swift.o -index-store-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/index/store -index-system-modules
1.	Swift version 6.0-dev (LLVM 4b0b1f9e1a69523, Swift 91a3abcf816bc36)
2.	Compiling with effective version 5.10
3.	While evaluating request TypeCheckSourceFileRequest(source_file "/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/URLRequestDataOperation+APIs-UntypedError.swift")
4.	While type-checking extension of URLRequestDataOperation (at /host/spi-builder-workspace/Sources/URLRequestOperation/Operations/URLRequestDataOperation+APIs-UntypedError.swift:25:8)
5.	While type-checking 'forAPIRequest(urlRequest:session:successType:decoders:resultProcessingDispatcher:requestProcessors:resultProcessorModifier:retryableStatusCodes:retryProviders:)' (at /host/spi-builder-workspace/Sources/URLRequestOperation/Operations/URLRequestDataOperation+APIs-UntypedError.swift:28:2)
6.	While evaluating request DefaultArgumentExprRequest(URLRequestOperation.(file).URLRequestDataOperation extension.forAPIRequest(urlRequest:session:successType:decoders:resultProcessingDispatcher:requestProcessors:resultProcessorModifier:retryableStatusCodes:retryProviders:).decoders@/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/URLRequestDataOperation+APIs-UntypedError.swift:31:3)
7.	While type-checking expression at [/host/spi-builder-workspace/Sources/URLRequestOperation/Operations/URLRequestDataOperation+APIs-UntypedError.swift:31:36 - line:31:62] RangeText="URLRequestOperationConfig."
8.	While type-checking-target starting at /host/spi-builder-workspace/Sources/URLRequestOperation/Operations/URLRequestDataOperation+APIs-UntypedError.swift:31:62
9.	While evaluating request StorageImplInfoRequest(URLRequestOperation.(file).URLRequestOperationConfig.defaultAPIResponseDecoders@/host/spi-builder-workspace/Sources/URLRequestOperation/URLRequestOperationConfig.swift:100:32)
Stack dump without symbol names (ensure you have llvm-symbolizer in your PATH or set the environment var `LLVM_SYMBOLIZER_PATH` to point to it):
0  swift-frontend 0x00005632afb46497
1  swift-frontend 0x00005632afb441ee
2  swift-frontend 0x00005632afb46b0a
3  libc.so.6      0x00007f05ca0a6520
4  libc.so.6      0x00007f05ca0fa9fc pthread_kill + 300
5  libc.so.6      0x00007f05ca0a6476 raise + 22
6  libc.so.6      0x00007f05ca08c7f3 abort + 211
7  libc.so.6      0x00007f05ca08c71b
8  libc.so.6      0x00007f05ca09de96
9  swift-frontend 0x00005632aa4581c4
10 swift-frontend 0x00005632aaa254f1
11 swift-frontend 0x00005632aa99903d
12 swift-frontend 0x00005632aa988a91
13 swift-frontend 0x00005632aa252e0a
14 swift-frontend 0x00005632aa252d34
15 swift-frontend 0x00005632aa252b07
16 swift-frontend 0x00005632aa25879f
17 swift-frontend 0x00005632aa25c79a
18 swift-frontend 0x00005632aa18f48c
19 swift-frontend 0x00005632aa178fd2
20 swift-frontend 0x00005632aa14729d
21 swift-frontend 0x00005632aa1497cc
22 swift-frontend 0x00005632aa13f9cd
23 swift-frontend 0x00005632aa139597
24 swift-frontend 0x00005632aa921b05
25 swift-frontend 0x00005632aa921a13
26 swift-frontend 0x00005632aa131ff3
27 swift-frontend 0x00005632aa130b6b
28 swift-frontend 0x00005632aa1ad6fd
29 swift-frontend 0x00005632aa1acdec
30 swift-frontend 0x00005632aa34ae62
31 swift-frontend 0x00005632aa34aced
32 swift-frontend 0x00005632aa34b1de
33 swift-frontend 0x00005632aa3930d8
34 swift-frontend 0x00005632aaa3d887
35 swift-frontend 0x00005632aa99e987
36 swift-frontend 0x00005632aa3aed44
37 swift-frontend 0x00005632aa3a3b66
38 swift-frontend 0x00005632aa395b0d
39 swift-frontend 0x00005632aa3a602b
40 swift-frontend 0x00005632aa39642b
41 swift-frontend 0x00005632aa395974
42 swift-frontend 0x00005632aa4913e5
43 swift-frontend 0x00005632aa49381b
44 swift-frontend 0x00005632aa491305
45 swift-frontend 0x00005632a90b9c59
46 swift-frontend 0x00005632a90b142a
47 swift-frontend 0x00005632a90b13c7
48 swift-frontend 0x00005632a8d9ef02
49 swift-frontend 0x00005632a8d8c177
50 swift-frontend 0x00005632a8d8a4fc
51 swift-frontend 0x00005632a8b46dde
52 libc.so.6      0x00007f05ca08dd90
53 libc.so.6      0x00007f05ca08de40 __libc_start_main + 128
54 swift-frontend 0x00005632a8b45e85
BUILD FAILURE 6.0 linux
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.