The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build swift-distributed-actors, reference 1.0.0-beta.3 (d816a1), with Swift 6.2 (beta) for macOS (SPM) on 20 Jun 2025 10:22:05 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 627 |
 628 |     @discardableResult
 629 |     override public func _spawnWatch<Message>(
     |                                      `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 630 |         _ naming: _ActorNaming,
 631 |         of type: Message.Type = Message.self,
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:641:31: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 639 |     }
 640 |
 641 |     override public func stop<Message: Codable>(child ref: _ActorRef<Message>) throws {
     |                               `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 642 |         try self._stop(child: ref)
 643 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:752:139: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 750 |                 return .init(.adapter(adapter))
 751 |             } else {
 752 |                 let adaptedAddress = try self.id.makeChildAddress(name: _ActorNaming.adapter.makeName(&self.namingContext), incarnation: .wellKnown)
     |                                                                                                                                           `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 753 |                 let adapter = _ActorRefAdapter(fromType: fromType, to: self.myself, id: adaptedAddress)
 754 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_Signals.swift:143:17: warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
141 |     ///
142 |     /// - SeeAlso: `Terminated` which is sent when a watched actor terminates.
143 |     final class _ChildTerminated: Terminated {
    |                 `- warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
144 |         /// Filled with the error that caused the child actor to terminate.
145 |         /// This kind of information is only known to the parent, which may decide to perform
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1431/1445] Compiling DistributedCluster Version.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:629:38: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 627 |
 628 |     @discardableResult
 629 |     override public func _spawnWatch<Message>(
     |                                      `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 630 |         _ naming: _ActorNaming,
 631 |         of type: Message.Type = Message.self,
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:641:31: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 639 |     }
 640 |
 641 |     override public func stop<Message: Codable>(child ref: _ActorRef<Message>) throws {
     |                               `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 642 |         try self._stop(child: ref)
 643 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:752:139: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 750 |                 return .init(.adapter(adapter))
 751 |             } else {
 752 |                 let adaptedAddress = try self.id.makeChildAddress(name: _ActorNaming.adapter.makeName(&self.namingContext), incarnation: .wellKnown)
     |                                                                                                                                           `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 753 |                 let adapter = _ActorRefAdapter(fromType: fromType, to: self.myself, id: adaptedAddress)
 754 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_Signals.swift:143:17: warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
141 |     ///
142 |     /// - SeeAlso: `Terminated` which is sent when a watched actor terminates.
143 |     final class _ChildTerminated: Terminated {
    |                 `- warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
144 |         /// Filled with the error that caused the child actor to terminate.
145 |         /// This kind of information is only known to the parent, which may decide to perform
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1432/1445] Compiling DistributedCluster WeakActorDictionary.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:629:38: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 627 |
 628 |     @discardableResult
 629 |     override public func _spawnWatch<Message>(
     |                                      `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 630 |         _ naming: _ActorNaming,
 631 |         of type: Message.Type = Message.self,
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:641:31: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 639 |     }
 640 |
 641 |     override public func stop<Message: Codable>(child ref: _ActorRef<Message>) throws {
     |                               `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 642 |         try self._stop(child: ref)
 643 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:752:139: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 750 |                 return .init(.adapter(adapter))
 751 |             } else {
 752 |                 let adaptedAddress = try self.id.makeChildAddress(name: _ActorNaming.adapter.makeName(&self.namingContext), incarnation: .wellKnown)
     |                                                                                                                                           `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 753 |                 let adapter = _ActorRefAdapter(fromType: fromType, to: self.myself, id: adaptedAddress)
 754 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_Signals.swift:143:17: warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
141 |     ///
142 |     /// - SeeAlso: `Terminated` which is sent when a watched actor terminates.
143 |     final class _ChildTerminated: Terminated {
    |                 `- warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
144 |         /// Filled with the error that caused the child actor to terminate.
145 |         /// This kind of information is only known to the parent, which may decide to perform
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1433/1445] Compiling DistributedCluster _ActorNaming.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:629:38: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 627 |
 628 |     @discardableResult
 629 |     override public func _spawnWatch<Message>(
     |                                      `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 630 |         _ naming: _ActorNaming,
 631 |         of type: Message.Type = Message.self,
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:641:31: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 639 |     }
 640 |
 641 |     override public func stop<Message: Codable>(child ref: _ActorRef<Message>) throws {
     |                               `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 642 |         try self._stop(child: ref)
 643 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:752:139: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 750 |                 return .init(.adapter(adapter))
 751 |             } else {
 752 |                 let adaptedAddress = try self.id.makeChildAddress(name: _ActorNaming.adapter.makeName(&self.namingContext), incarnation: .wellKnown)
     |                                                                                                                                           `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 753 |                 let adapter = _ActorRefAdapter(fromType: fromType, to: self.myself, id: adaptedAddress)
 754 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_Signals.swift:143:17: warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
141 |     ///
142 |     /// - SeeAlso: `Terminated` which is sent when a watched actor terminates.
143 |     final class _ChildTerminated: Terminated {
    |                 `- warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
144 |         /// Filled with the error that caused the child actor to terminate.
145 |         /// This kind of information is only known to the parent, which may decide to perform
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1434/1445] Compiling DistributedCluster _ActorShell.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:629:38: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 627 |
 628 |     @discardableResult
 629 |     override public func _spawnWatch<Message>(
     |                                      `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 630 |         _ naming: _ActorNaming,
 631 |         of type: Message.Type = Message.self,
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:641:31: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 639 |     }
 640 |
 641 |     override public func stop<Message: Codable>(child ref: _ActorRef<Message>) throws {
     |                               `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 642 |         try self._stop(child: ref)
 643 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:752:139: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 750 |                 return .init(.adapter(adapter))
 751 |             } else {
 752 |                 let adaptedAddress = try self.id.makeChildAddress(name: _ActorNaming.adapter.makeName(&self.namingContext), incarnation: .wellKnown)
     |                                                                                                                                           `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 753 |                 let adapter = _ActorRefAdapter(fromType: fromType, to: self.myself, id: adaptedAddress)
 754 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_Signals.swift:143:17: warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
141 |     ///
142 |     /// - SeeAlso: `Terminated` which is sent when a watched actor terminates.
143 |     final class _ChildTerminated: Terminated {
    |                 `- warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
144 |         /// Filled with the error that caused the child actor to terminate.
145 |         /// This kind of information is only known to the parent, which may decide to perform
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1435/1445] Compiling DistributedCluster _BehaviorTimers.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:629:38: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 627 |
 628 |     @discardableResult
 629 |     override public func _spawnWatch<Message>(
     |                                      `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 630 |         _ naming: _ActorNaming,
 631 |         of type: Message.Type = Message.self,
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:641:31: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 639 |     }
 640 |
 641 |     override public func stop<Message: Codable>(child ref: _ActorRef<Message>) throws {
     |                               `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 642 |         try self._stop(child: ref)
 643 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:752:139: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 750 |                 return .init(.adapter(adapter))
 751 |             } else {
 752 |                 let adaptedAddress = try self.id.makeChildAddress(name: _ActorNaming.adapter.makeName(&self.namingContext), incarnation: .wellKnown)
     |                                                                                                                                           `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 753 |                 let adapter = _ActorRefAdapter(fromType: fromType, to: self.myself, id: adaptedAddress)
 754 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_Signals.swift:143:17: warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
141 |     ///
142 |     /// - SeeAlso: `Terminated` which is sent when a watched actor terminates.
143 |     final class _ChildTerminated: Terminated {
    |                 `- warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
144 |         /// Filled with the error that caused the child actor to terminate.
145 |         /// This kind of information is only known to the parent, which may decide to perform
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1436/1445] Compiling DistributedCluster _Mailbox.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:629:38: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 627 |
 628 |     @discardableResult
 629 |     override public func _spawnWatch<Message>(
     |                                      `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 630 |         _ naming: _ActorNaming,
 631 |         of type: Message.Type = Message.self,
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:641:31: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 639 |     }
 640 |
 641 |     override public func stop<Message: Codable>(child ref: _ActorRef<Message>) throws {
     |                               `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 642 |         try self._stop(child: ref)
 643 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:752:139: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 750 |                 return .init(.adapter(adapter))
 751 |             } else {
 752 |                 let adaptedAddress = try self.id.makeChildAddress(name: _ActorNaming.adapter.makeName(&self.namingContext), incarnation: .wellKnown)
     |                                                                                                                                           `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 753 |                 let adapter = _ActorRefAdapter(fromType: fromType, to: self.myself, id: adaptedAddress)
 754 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_Signals.swift:143:17: warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
141 |     ///
142 |     /// - SeeAlso: `Terminated` which is sent when a watched actor terminates.
143 |     final class _ChildTerminated: Terminated {
    |                 `- warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
144 |         /// Filled with the error that caused the child actor to terminate.
145 |         /// This kind of information is only known to the parent, which may decide to perform
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1437/1445] Compiling DistributedCluster _OrderedSet+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:629:38: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 627 |
 628 |     @discardableResult
 629 |     override public func _spawnWatch<Message>(
     |                                      `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 630 |         _ naming: _ActorNaming,
 631 |         of type: Message.Type = Message.self,
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:641:31: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 639 |     }
 640 |
 641 |     override public func stop<Message: Codable>(child ref: _ActorRef<Message>) throws {
     |                               `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 642 |         try self._stop(child: ref)
 643 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:752:139: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 750 |                 return .init(.adapter(adapter))
 751 |             } else {
 752 |                 let adaptedAddress = try self.id.makeChildAddress(name: _ActorNaming.adapter.makeName(&self.namingContext), incarnation: .wellKnown)
     |                                                                                                                                           `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 753 |                 let adapter = _ActorRefAdapter(fromType: fromType, to: self.myself, id: adaptedAddress)
 754 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_Signals.swift:143:17: warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
141 |     ///
142 |     /// - SeeAlso: `Terminated` which is sent when a watched actor terminates.
143 |     final class _ChildTerminated: Terminated {
    |                 `- warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
144 |         /// Filled with the error that caused the child actor to terminate.
145 |         /// This kind of information is only known to the parent, which may decide to perform
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1438/1445] Compiling DistributedCluster _Signals.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:629:38: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 627 |
 628 |     @discardableResult
 629 |     override public func _spawnWatch<Message>(
     |                                      `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 630 |         _ naming: _ActorNaming,
 631 |         of type: Message.Type = Message.self,
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:641:31: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 639 |     }
 640 |
 641 |     override public func stop<Message: Codable>(child ref: _ActorRef<Message>) throws {
     |                               `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 642 |         try self._stop(child: ref)
 643 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:752:139: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 750 |                 return .init(.adapter(adapter))
 751 |             } else {
 752 |                 let adaptedAddress = try self.id.makeChildAddress(name: _ActorNaming.adapter.makeName(&self.namingContext), incarnation: .wellKnown)
     |                                                                                                                                           `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 753 |                 let adapter = _ActorRefAdapter(fromType: fromType, to: self.myself, id: adaptedAddress)
 754 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_Signals.swift:143:17: warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
141 |     ///
142 |     /// - SeeAlso: `Terminated` which is sent when a watched actor terminates.
143 |     final class _ChildTerminated: Terminated {
    |                 `- warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
144 |         /// Filled with the error that caused the child actor to terminate.
145 |         /// This kind of information is only known to the parent, which may decide to perform
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1439/1445] Compiling DistributedCluster utils.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:629:38: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 627 |
 628 |     @discardableResult
 629 |     override public func _spawnWatch<Message>(
     |                                      `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 630 |         _ naming: _ActorNaming,
 631 |         of type: Message.Type = Message.self,
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:641:31: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  29 | /// The shell is mutable, and full of dangerous and carefully threaded/ordered code, be extra cautious.
  30 | // TODO: remove this and replace by the infrastructure which is now Swift's `actor`
  31 | public final class _ActorShell<Message: Codable>: _ActorContext<Message>, AbstractShellProtocol {
     |                                `- note: 'Message' previously declared here
  32 |     // The phrase that "actor change their behavior" can be understood quite literally;
  33 |     // On each message interpretation the actor may return a new behavior that will be handling the next message.
     :
 639 |     }
 640 |
 641 |     override public func stop<Message: Codable>(child ref: _ActorRef<Message>) throws {
     |                               `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 642 |         try self._stop(child: ref)
 643 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:996:17: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:752:139: warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 750 |                 return .init(.adapter(adapter))
 751 |             } else {
 752 |                 let adaptedAddress = try self.id.makeChildAddress(name: _ActorNaming.adapter.makeName(&self.namingContext), incarnation: .wellKnown)
     |                                                                                                                                           `- warning: 'wellKnown' is deprecated: Useful only with behavior actors, will be removed entirely [#DeprecatedDeclaration]
 753 |                 let adapter = _ActorRefAdapter(fromType: fromType, to: self.myself, id: adaptedAddress)
 754 |
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:997:23: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
     |                       |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                       `- note: add 'if #available' version check
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:999:77: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
 999 |             if self._myselfReceivesSystemMessages.id.incarnation == context.id.incarnation {
     |                                                                             |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                                             `- note: add 'if #available' version check
1000 |                 return self.asAddressable
1001 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:32: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Decodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_ActorShell.swift:1003:52: warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
 939 | }
 940 |
 941 | extension AbstractShellProtocol {
     | `- note: add @available attribute to enclosing extension
 942 |     @inlinable
 943 |     var receivesSystemMessages: _ReceivesSystemMessages {
     :
 994 |     }
 995 |
 996 |     public func _resolveUntyped(context: _ResolveContext<Never>) -> _AddressableActorRef {
     |                 `- note: add @available attribute to enclosing instance method
 997 |         guard context.selectorSegments.first != nil else {
 998 |             // no remaining selectors == we are the "selected" ref, apply uid check
     :
1001 |             } else {
1002 |                 // the selection was indeed for this path, however we are a different incarnation (or different actor)
1003 |                 return context.personalDeadLetters.asAddressable
     |                                                    |- warning: conformance of 'Never' to 'Encodable' is only available in macOS 14.0 or newer; this is an error in the Swift 6 language mode
     |                                                    `- note: add 'if #available' version check
1004 |             }
1005 |         }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedCluster/_Signals.swift:143:17: warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
141 |     ///
142 |     /// - SeeAlso: `Terminated` which is sent when a watched actor terminates.
143 |     final class _ChildTerminated: Terminated {
    |                 `- warning: class '_ChildTerminated' must restate inherited '@unchecked Sendable' conformance
144 |         /// Filled with the error that caused the child actor to terminate.
145 |         /// This kind of information is only known to the parent, which may decide to perform
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1440/1464] Compiling it_Clustered_swim_suspension_reachability main.swift
[1441/1464] Emitting module it_Clustered_swim_suspension_reachability
[1442/1464] Compiling MultiNodeTestKit MultiNodeTestSettings.swift
[1443/1464] Compiling MultiNodeTestKit MultiNodeTestKit.swift
[1443/1464] Write Objects.LinkFileList
[1445/1464] Compiling MultiNodeTestKit MultiNodeTestKit+Control.swift
[1446/1464] Compiling MultiNodeTestKit MultiNodeTestConductor.swift
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKit/MultiNodeTestConductor.swift:164:21: warning: dictionary literal of type 'Logger.Metadata' (aka 'Dictionary<String, Logger.MetadataValue>') has duplicate entries for string literal key 'checkPoint/error'
162 |                 self.log.warning("Checkpoint failed, informing node [\(node)]", metadata: [
163 |                     "checkPoint/node": "\(node)",
164 |                     "checkPoint/error": "\(checkPointError)",
    |                     |- warning: dictionary literal of type 'Logger.Metadata' (aka 'Dictionary<String, Logger.MetadataValue>') has duplicate entries for string literal key 'checkPoint/error'
    |                     `- note: duplicate key declared here
165 |                     "checkPoint/error": "\(checkPointError)",
    |                     `- note: duplicate key declared here
166 |                 ])
167 |                 cc.resume(throwing: checkPointError)
[1447/1464] Emitting module MultiNodeTestKit
[1448/1468] Compiling DistributedActorsMultiNodeTests MultiNode+ReceptionistTests.swift
[1449/1468] Compiling DistributedActorsMultiNodeTests MultiNode+MultiNodeConductorTests.swift
[1450/1468] Emitting module DistributedActorsMultiNodeTests
[1451/1468] Compiling DistributedActorsMultiNodeTests MultiNode+ClusterSingletonTests.swift
[1452/1478] Compiling MultiNodeTestKitRunner boot+MultiNodeTestKitRunner+Exec.swift
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/boot+MultiNodeTestKitRunner+Exec.swift:56:22: warning: 'installSwiftBacktrace' is deprecated: Backtrace will not longer be offered by the actor system by default, and has to be depended on by end-users [#DeprecatedDeclaration]
 54 |
 55 |             /// By default get better backtraces in case we crash:
 56 |             settings.installSwiftBacktrace = true
    |                      `- warning: 'installSwiftBacktrace' is deprecated: Backtrace will not longer be offered by the actor system by default, and has to be depended on by end-users [#DeprecatedDeclaration]
 57 |
 58 |             /// Configure a nicer logger, that pretty prints metadata and also includes source location of logs
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1453/1479] Compiling MultiNodeTestKitRunner MultiNode+LogCapture.swift
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/MultiNode+LogCapture.swift:21:8: warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
 19 | import MultiNodeTestKit
 20 |
 21 | struct PrettyMultiNodeLogHandler: LogHandler {
    |        `- warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
 22 |     let nodeName: String
 23 |     let settings: MultiNodeTestSettings.MultiNodeLogCaptureSettings
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:209:17: note: 'log(level:message:metadata:source:file:function:line:)' declared here
133 |     ///     - function: The function the log line was emitted from.
134 |     ///     - line: The line the log message was emitted from.
135 |     func log(
    |          `- note: requirement 'log(level:message:metadata:source:file:function:line:)' declared here
136 |         level: Logger.Level,
137 |         message: Logger.Message,
    :
207 | extension LogHandler {
208 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
209 |     public func log(
    |                 `- note: 'log(level:message:metadata:source:file:function:line:)' declared here
210 |         level: Logger.Level,
211 |         message: Logger.Message,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1454/1479] Emitting module MultiNodeTestKitRunner
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/MultiNode+LogCapture.swift:21:8: warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
 19 | import MultiNodeTestKit
 20 |
 21 | struct PrettyMultiNodeLogHandler: LogHandler {
    |        `- warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
 22 |     let nodeName: String
 23 |     let settings: MultiNodeTestSettings.MultiNodeLogCaptureSettings
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:209:17: note: 'log(level:message:metadata:source:file:function:line:)' declared here
133 |     ///     - function: The function the log line was emitted from.
134 |     ///     - line: The line the log message was emitted from.
135 |     func log(
    |          `- note: requirement 'log(level:message:metadata:source:file:function:line:)' declared here
136 |         level: Logger.Level,
137 |         message: Logger.Message,
    :
207 | extension LogHandler {
208 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
209 |     public func log(
    |                 `- note: 'log(level:message:metadata:source:file:function:line:)' declared here
210 |         level: Logger.Level,
211 |         message: Logger.Message,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1455/1479] Compiling MultiNodeTestKitRunner MultiNode+TestSuites.swift
[1456/1479] Compiling MultiNodeTestKitRunner Time.swift
[1457/1479] Compiling MultiNodeTestKitRunner Terminal+Rainbow.swift
[1458/1479] Compiling MultiNodeTestKitRunner Process+Extensions.swift
[1459/1479] Compiling MultiNodeTestKitRunner NaiveLogger.swift
[1460/1479] Compiling MultiNodeTestKitRunner boot+MultiNodeTestKitRunner+Test.swift
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/boot+MultiNodeTestKitRunner+Test.swift:120:22: warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode
118 |         let elg = MultiThreadedEventLoopGroup(numberOfThreads: 1)
119 |         defer {
120 |             try! elg.syncShutdownGracefully()
    |                      `- warning: instance method 'syncShutdownGracefully' is unavailable from asynchronous contexts; this can end up blocking the calling thread; this is an error in the Swift 6 language mode
121 |         }
122 |
[1461/1479] Compiling MultiNodeTestKitRunner OutputGrepper.swift
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/OutputGrepper.swift:42:25: warning: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
 40 |                 channel.pipeline.addHandlers(
 41 |                     [
 42 |                         ByteToMessageHandler(NewlineFramer()),
    |                         `- warning: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' is unavailable; this is an error in the Swift 6 language mode
 43 |                         GrepHandler(
 44 |                             nodeName: nodeName,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/Codec.swift:507:1: note: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' has been explicitly marked unavailable here
505 |
506 | @available(*, unavailable)
507 | extension ByteToMessageHandler: Sendable {}
    | `- note: conformance of 'ByteToMessageHandler<Decoder>' to 'Sendable' has been explicitly marked unavailable here
508 |
509 | // MARK: ByteToMessageHandler: Test Helpers
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/OutputGrepper.swift:51:14: warning: 'withPipes(inputDescriptor:outputDescriptor:)' is deprecated: renamed to 'takingOwnershipOfDescriptors(input:output:)' [#DeprecatedDeclaration]
 49 |                 )
 50 |             }
 51 |             .withPipes(
    |              |- warning: 'withPipes(inputDescriptor:outputDescriptor:)' is deprecated: renamed to 'takingOwnershipOfDescriptors(input:output:)' [#DeprecatedDeclaration]
    |              `- note: use 'takingOwnershipOfDescriptors(input:output:)' instead
 52 |                 inputDescriptor: dup(processToChannel.fileHandleForReading.fileDescriptor),
 53 |                 outputDescriptor: dup(deadPipe.fileHandleForWriting.fileDescriptor)
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/OutputGrepper.swift:55:33: warning: 'init(descriptor:)' is deprecated: Avoid using NIOFileHandle. The type is difficult to hold correctly, use NIOFileSystem as a replacement API. [#DeprecatedDeclaration]
 53 |                 outputDescriptor: dup(deadPipe.fileHandleForWriting.fileDescriptor)
 54 |             )
 55 |         let processOutputPipe = NIOFileHandle(descriptor: dup(processToChannel.fileHandleForWriting.fileDescriptor))
    |                                 `- warning: 'init(descriptor:)' is deprecated: Avoid using NIOFileHandle. The type is difficult to hold correctly, use NIOFileSystem as a replacement API. [#DeprecatedDeclaration]
 56 |         processToChannel.fileHandleForReading.closeFile()
 57 |         processToChannel.fileHandleForWriting.closeFile()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1462/1479] Compiling MultiNodeTestKitRunner boot+MultiNodeTestKitRunner.swift
/Users/admin/builder/spi-builder-workspace/Sources/MultiNodeTestKitRunner/boot+MultiNodeTestKitRunner.swift:148:25: warning: variable 'reason' was never used; consider replacing with '_' or removing it [#no-usage]
146 |                 switch result {
147 |                 case .failure(let error as MultiNodeProgramError):
148 |                     var reason: String = "MultiNode test failed, output was dumped."
    |                         `- warning: variable 'reason' was never used; consider replacing with '_' or removing it [#no-usage]
149 |                     for line in error.completeOutput {
150 |                         log("[\(nodeName)](\(multiNodeTest.testName)) \(line)")
[1462/1479] Write Objects.LinkFileList
[1463/1479] Linking it_Clustered_swim_suspension_reachability
[1464/1479] Applying it_Clustered_swim_suspension_reachability
[1465/1479] Linking MultiNodeTestKitRunner
[1466/1479] Applying MultiNodeTestKitRunner
[1468/1479] Compiling DistributedActorsTestKit TestProbes+Receptionist.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/TestProbes+Receptionist.swift:33:71: warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
26 |         expected: Set<_ActorRef<String>>, within timeout: Duration,
27 |         verbose: Bool = false,
28 |         file: StaticString = #filePath, line: UInt = #line, column: UInt = #column
   |                              `- note: did you mean for parameter 'file' to default to '#fileID'?
29 |     ) throws {
30 |         do {
31 |             let listing = try self.fishForMessages(within: timeout, file: file, line: line) {
32 |                 if verbose {
33 |                     pinfo("Received listing: \($0.refs.count)", file: file, line: line)
   |                                                                       |- warning: parameter 'file' with default argument '#filePath' passed to parameter 'file', whose default argument is '#fileID'
   |                                                                       `- note: add parentheses to silence this warning
34 |                 }
35 |
DistributedCluster.pinfo.file:1:1: note: 'file' declared here
1 | file: StaticString
  | `- note: 'file' declared here
[1469/1479] Compiling DistributedActorsTestKit Task+Testing.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/Task+Testing.swift:33:23: error: type 'Task<Success, any Error>' has no member 'select'
31 |
32 |         defer { timeoutTask.cancel() }
33 |         return await .select(valueTask, timeoutTask)
   |                       `- error: type 'Task<Success, any Error>' has no member 'select'
34 |     }
35 | }
[1470/1480] Compiling DistributedActorsTestKit SingleClusterSystemXCTestCase.swift
[1471/1480] Compiling DistributedActorsTestKit ShouldMatchers.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/ShouldMatchers.swift:36:15: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 24 | private let isTty = isatty(fileno(stdin)) == 0
 25 |
 26 | public struct TestMatchers<T> {
    |                            `- note: 'T' previously declared here
 27 |     private let it: T
 28 |
    :
 34 |     }
 35 |
 36 |     func toBe<T>(_ expected: T.Type) {
    |               `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 37 |         if !(self.it is T) {
 38 |             let error = self.callSite.notEqualError(got: self.it, expected: expected)
[1472/1480] Compiling DistributedActorsTestKit TestProbes.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/TestProbes.swift:699:25: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 34 | ///
 35 | /// - SeeAlso: `ActorableTestProbe` which is the equivalent API for `Actorable`s.
 36 | public final class ActorTestProbe<Message: Codable>: @unchecked Sendable {
    |                                   `- note: 'Message' previously declared here
 37 |     /// Name of the test probe (and underlying actor).
 38 |     public let name: String
    :
697 |     /// and our direct message arrives first, before the watch at the destination, causing potentially confusing behavior
698 |     /// in some very ordering delicate testing scenarios.
699 |     public func forward<Message>(_ message: Message, to target: _ActorRef<Message>, file: String = #filePath, line: UInt = #line) where Message: Codable {
    |                         `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
700 |         self.internalRef.tell(ProbeCommands.forwardCommand(send: { () in target.tell(message, file: file, line: line) }))
701 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/TestProbes.swift:825:27: warning: capture of non-sendable type 'Message.Type' in an isolated closure; this is an error in the Swift 6 language mode
823 |             timeoutError: callSite.error("Expected [\(actor)] to terminate within \(timeout.prettyDescription)")
824 |         ) {
825 |             _ = try await self._internal.whenLocal { __secretlyKnownToBeLocal in // TODO(distributed): this is annoying, we must track "known to be local" in typesystem instead
    |                           `- warning: capture of non-sendable type 'Message.Type' in an isolated closure; this is an error in the Swift 6 language mode
826 |                 for await terminated in __secretlyKnownToBeLocal.terminatedQueue.items {
827 |                     guard terminated == actor else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/TestProbes.swift:813:17: warning: capture of non-sendable type 'Message.Type' in an isolated closure; this is an error in the Swift 6 language mode
811 |     ///
812 |     /// - SeeAlso: `DeathWatch`
813 |     public func expectTermination(
    |                 `- warning: capture of non-sendable type 'Message.Type' in an isolated closure; this is an error in the Swift 6 language mode
814 |         of actor: ActorID,
815 |         within timeout: Duration? = nil,
[1473/1480] Compiling DistributedActorsTestKit InspectKit.swift
[1474/1480] Compiling DistributedActorsTestKit Data+Testing.swift
[1475/1480] Compiling DistributedActorsTestKit ClusteredActorSystemsXCTestCase.swift
[1476/1480] Compiling DistributedActorsTestKit DistributedActor+Assertions.swift
[1477/1480] Compiling DistributedActorsTestKit ActorTestKit.swift
[1478/1480] Compiling DistributedActorsTestKit ByteBuffer+Testing.swift
[1479/1480] Emitting module DistributedActorsTestKit
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/LogCapture.swift:195:8: warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
193 | // MARK: LogCapture LogHandler
194 |
195 | struct LogCaptureLogHandler: LogHandler {
    |        `- warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
196 |     let label: String
197 |     let capture: LogCapture
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:209:17: note: 'log(level:message:metadata:source:file:function:line:)' declared here
133 |     ///     - function: The function the log line was emitted from.
134 |     ///     - line: The line the log message was emitted from.
135 |     func log(
    |          `- note: requirement 'log(level:message:metadata:source:file:function:line:)' declared here
136 |         level: Logger.Level,
137 |         message: Logger.Message,
    :
207 | extension LogHandler {
208 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
209 |     public func log(
    |                 `- note: 'log(level:message:metadata:source:file:function:line:)' declared here
210 |         level: Logger.Level,
211 |         message: Logger.Message,
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/ShouldMatchers.swift:36:15: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 24 | private let isTty = isatty(fileno(stdin)) == 0
 25 |
 26 | public struct TestMatchers<T> {
    |                            `- note: 'T' previously declared here
 27 |     private let it: T
 28 |
    :
 34 |     }
 35 |
 36 |     func toBe<T>(_ expected: T.Type) {
    |               `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 37 |         if !(self.it is T) {
 38 |             let error = self.callSite.notEqualError(got: self.it, expected: expected)
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/TestProbes.swift:699:25: warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 34 | ///
 35 | /// - SeeAlso: `ActorableTestProbe` which is the equivalent API for `Actorable`s.
 36 | public final class ActorTestProbe<Message: Codable>: @unchecked Sendable {
    |                                   `- note: 'Message' previously declared here
 37 |     /// Name of the test probe (and underlying actor).
 38 |     public let name: String
    :
697 |     /// and our direct message arrives first, before the watch at the destination, causing potentially confusing behavior
698 |     /// in some very ordering delicate testing scenarios.
699 |     public func forward<Message>(_ message: Message, to target: _ActorRef<Message>, file: String = #filePath, line: UInt = #line) where Message: Codable {
    |                         `- warning: generic parameter 'Message' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
700 |         self.internalRef.tell(ProbeCommands.forwardCommand(send: { () in target.tell(message, file: file, line: line) }))
701 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/TestProbes.swift:825:27: warning: capture of non-sendable type 'Message.Type' in an isolated closure; this is an error in the Swift 6 language mode
823 |             timeoutError: callSite.error("Expected [\(actor)] to terminate within \(timeout.prettyDescription)")
824 |         ) {
825 |             _ = try await self._internal.whenLocal { __secretlyKnownToBeLocal in // TODO(distributed): this is annoying, we must track "known to be local" in typesystem instead
    |                           `- warning: capture of non-sendable type 'Message.Type' in an isolated closure; this is an error in the Swift 6 language mode
826 |                 for await terminated in __secretlyKnownToBeLocal.terminatedQueue.items {
827 |                     guard terminated == actor else {
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/TestProbes.swift:813:17: warning: capture of non-sendable type 'Message.Type' in an isolated closure; this is an error in the Swift 6 language mode
811 |     ///
812 |     /// - SeeAlso: `DeathWatch`
813 |     public func expectTermination(
    |                 `- warning: capture of non-sendable type 'Message.Type' in an isolated closure; this is an error in the Swift 6 language mode
814 |         of actor: ActorID,
815 |         within timeout: Duration? = nil,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1480/1480] Compiling DistributedActorsTestKit LogCapture.swift
/Users/admin/builder/spi-builder-workspace/Sources/DistributedActorsTestKit/LogCapture.swift:195:8: warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
193 | // MARK: LogCapture LogHandler
194 |
195 | struct LogCaptureLogHandler: LogHandler {
    |        `- warning: deprecated default implementation is used to satisfy instance method 'log(level:message:metadata:source:file:function:line:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
196 |     let label: String
197 |     let capture: LogCapture
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:209:17: note: 'log(level:message:metadata:source:file:function:line:)' declared here
133 |     ///     - function: The function the log line was emitted from.
134 |     ///     - line: The line the log message was emitted from.
135 |     func log(
    |          `- note: requirement 'log(level:message:metadata:source:file:function:line:)' declared here
136 |         level: Logger.Level,
137 |         message: Logger.Message,
    :
207 | extension LogHandler {
208 |     @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
209 |     public func log(
    |                 `- note: 'log(level:message:metadata:source:file:function:line:)' declared here
210 |         level: Logger.Level,
211 |         message: Logger.Message,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
Fetching https://github.com/apple/swift-cluster-membership
[1/2587] Fetching swift-cluster-membership
Fetched https://github.com/apple/swift-cluster-membership from cache (1.16s)
Fetching https://github.com/apple/swift-metrics.git
Fetching https://github.com/apple/swift-service-discovery
Fetching https://github.com/apple/swift-nio-extras.git
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/apple/swift-argument-parser
Fetching https://github.com/apple/swift-docc-plugin
[1/1120] Fetching swift-service-discovery
[113/3326] Fetching swift-service-discovery, swift-metrics
[290/5408] Fetching swift-service-discovery, swift-metrics, swift-docc-plugin
[822/11350] Fetching swift-service-discovery, swift-metrics, swift-docc-plugin, swift-nio-extras
[1073/15186] Fetching swift-service-discovery, swift-metrics, swift-docc-plugin, swift-nio-extras, swift-log
[6062/30566] Fetching swift-service-discovery, swift-metrics, swift-docc-plugin, swift-nio-extras, swift-log, swift-argument-parser
Fetched https://github.com/apple/swift-metrics.git from cache (0.99s)
[3992/28360] Fetching swift-service-discovery, swift-docc-plugin, swift-nio-extras, swift-log, swift-argument-parser
Fetching https://github.com/apple/swift-collections
[12127/104693] Fetching swift-service-discovery, swift-docc-plugin, swift-nio-extras, swift-log, swift-argument-parser, swift-nio
Fetched https://github.com/apple/swift-log.git from cache (1.16s)
[8311/100857] Fetching swift-service-discovery, swift-docc-plugin, swift-nio-extras, swift-argument-parser, swift-nio
Fetching https://github.com/apple/swift-async-algorithms
Fetched https://github.com/apple/swift-nio-extras.git from cache (1.19s)
[3431/94915] Fetching swift-service-discovery, swift-docc-plugin, swift-argument-parser, swift-nio
Fetching https://github.com/swift-server/swift-backtrace
[52933/111555] Fetching swift-service-discovery, swift-docc-plugin, swift-argument-parser, swift-nio, swift-collections
[61996/112186] Fetching swift-service-discovery, swift-docc-plugin, swift-argument-parser, swift-nio, swift-collections, swift-backtrace
[65864/117171] Fetching swift-service-discovery, swift-docc-plugin, swift-argument-parser, swift-nio, swift-collections, swift-backtrace, swift-async-algorithms
Fetched https://github.com/swift-server/swift-backtrace from cache (0.77s)
[67887/116540] Fetching swift-service-discovery, swift-docc-plugin, swift-argument-parser, swift-nio, swift-collections, swift-async-algorithms
Fetching https://github.com/apple/swift-protobuf
Fetched https://github.com/apple/swift-async-algorithms from cache (1.05s)
Fetching https://github.com/apple/swift-nio-ssl
[77214/111555] Fetching swift-service-discovery, swift-docc-plugin, swift-argument-parser, swift-nio, swift-collections
Fetched https://github.com/apple/swift-collections from cache (1.61s)
[75832/94915] Fetching swift-service-discovery, swift-docc-plugin, swift-argument-parser, swift-nio
Fetching https://github.com/apple/swift-atomics
[93390/109805] Fetching swift-service-discovery, swift-docc-plugin, swift-argument-parser, swift-nio, swift-nio-ssl
[95065/111602] Fetching swift-service-discovery, swift-docc-plugin, swift-argument-parser, swift-nio, swift-nio-ssl, swift-atomics
Fetched https://github.com/apple/swift-atomics from cache (1.06s)
[98191/109805] Fetching swift-service-discovery, swift-docc-plugin, swift-argument-parser, swift-nio, swift-nio-ssl
[104148/149260] Fetching swift-service-discovery, swift-docc-plugin, swift-argument-parser, swift-nio, swift-nio-ssl, swift-protobuf
Fetched https://github.com/apple/swift-nio.git from cache (4.31s)
Fetched https://github.com/apple/swift-service-discovery from cache (4.31s)
Fetched https://github.com/apple/swift-docc-plugin from cache (4.31s)
Fetched https://github.com/apple/swift-argument-parser from cache (4.31s)
Fetched https://github.com/apple/swift-nio-ssl from cache (2.13s)
[4341/39455] Fetching swift-protobuf
Fetched https://github.com/apple/swift-protobuf from cache (15.20s)
Computing version for https://github.com/apple/swift-async-algorithms
Computed https://github.com/apple/swift-async-algorithms at 0.1.0 (17.85s)
Computing version for https://github.com/apple/swift-atomics
Computed https://github.com/apple/swift-atomics at 1.3.0 (0.46s)
Computing version for https://github.com/apple/swift-service-discovery
Computed https://github.com/apple/swift-service-discovery at 1.4.0 (0.44s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.4 (0.55s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3413] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.22s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.83s)
Computing version for https://github.com/apple/swift-collections
Computed https://github.com/apple/swift-collections at 1.2.0 (0.53s)
Computing version for https://github.com/swift-server/swift-backtrace
Computed https://github.com/swift-server/swift-backtrace at 1.3.5 (0.56s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.7.0 (0.44s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.43s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.5.1 (0.46s)
Computing version for https://github.com/apple/swift-nio-ssl
Computed https://github.com/apple/swift-nio-ssl at 2.32.0 (0.58s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.83.0 (0.64s)
Fetching https://github.com/apple/swift-system.git
[1/4436] Fetching swift-system
Fetched https://github.com/apple/swift-system.git from cache (1.01s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.5.0 (1.46s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.26.0 (0.48s)
Fetching https://github.com/apple/swift-http-structured-headers.git
Fetching https://github.com/apple/swift-algorithms.git
Fetching https://github.com/apple/swift-http-types.git
Fetching https://github.com/apple/swift-nio-http2.git
[1/904] Fetching swift-http-types
[83/2062] Fetching swift-http-types, swift-http-structured-headers
[130/8021] Fetching swift-http-types, swift-http-structured-headers, swift-algorithms
[250/19553] Fetching swift-http-types, swift-http-structured-headers, swift-algorithms, swift-nio-http2
Fetched https://github.com/apple/swift-algorithms.git from cache (1.11s)
Fetched https://github.com/apple/swift-http-types.git from cache (1.11s)
[3811/12690] Fetching swift-http-structured-headers, swift-nio-http2
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (1.50s)
Fetched https://github.com/apple/swift-nio-http2.git from cache (1.50s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (2.08s)
Fetching https://github.com/apple/swift-numerics.git
[1/5757] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (1.00s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.4.0 (1.46s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.3.0 (0.43s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (0.52s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.36.0 (0.42s)
Computing version for https://github.com/apple/swift-protobuf
Computed https://github.com/apple/swift-protobuf at 1.30.0 (0.38s)
Creating working copy for https://github.com/apple/swift-cluster-membership
Working copy of https://github.com/apple/swift-cluster-membership resolved at main (f5c6877)
Creating working copy for https://github.com/apple/swift-async-algorithms
Working copy of https://github.com/apple/swift-async-algorithms resolved at 0.1.0
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.5.1
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.5.0
Creating working copy for https://github.com/apple/swift-atomics
Working copy of https://github.com/apple/swift-atomics resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.36.0
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.83.0
Creating working copy for https://github.com/apple/swift-collections
Working copy of https://github.com/apple/swift-collections resolved at 1.2.0
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.4.0
Creating working copy for https://github.com/apple/swift-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-service-discovery
Working copy of https://github.com/apple/swift-service-discovery resolved at 1.4.0
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.26.0
Creating working copy for https://github.com/apple/swift-nio-ssl
Working copy of https://github.com/apple/swift-nio-ssl resolved at 2.32.0
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.0.3
Creating working copy for https://github.com/apple/swift-protobuf
Working copy of https://github.com/apple/swift-protobuf resolved at 1.30.0
Creating working copy for https://github.com/swift-server/swift-backtrace
Working copy of https://github.com/swift-server/swift-backtrace resolved at 1.3.5
Creating working copy for https://github.com/apple/swift-metrics.git
Working copy of https://github.com/apple/swift-metrics.git resolved at 2.7.0
Creating working copy for https://github.com/apple/swift-http-structured-headers.git
Working copy of https://github.com/apple/swift-http-structured-headers.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.4
BUILD FAILURE 6.2 macosSpm