The Swift Package Index logo.Swift Package Index

Build Information

Failed to build AsyncExtensions, reference main (1f0729), with Swift 6.2 for macOS (SPM) on 20 Jun 2025 23:49:28 UTC.

Build Command

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

Build Log

  |                  `- note: 'Failure' declared here
4 |
[354/384] Compiling AsyncExtensions AsyncSequence+FlatMapLatest.swift
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncSequence+EraseToAnyAsyncSequence.swift:23:39: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 |
22 |   public init<Base: AsyncSequence>(_ base: Base) where Base.Element == Element, Base: Sendable {
23 |     self.makeAsyncIteratorClosure = { AnyAsyncIterator(base: base.makeAsyncIterator()) }
   |                                       `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 |   }
25 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncSubjects/AsyncSubject.swift:10:18: warning: redeclaration of associated type 'Failure' from protocol 'AsyncSequence' is better expressed as a 'where' clause on the protocol
 8 | #if swift(>=5.7)
 9 | public protocol AsyncSubject<Element, Failure>: AnyObject, AsyncSequence, Sendable where AsyncIterator: AsyncSubjectIterator {
10 |   associatedtype Failure: Error
   |                  `- warning: redeclaration of associated type 'Failure' from protocol 'AsyncSequence' is better expressed as a 'where' clause on the protocol
11 |
12 |   func send(_ element: Element)
_Concurrency.AsyncSequence.Failure:3:18: note: 'Failure' declared here
1 | protocol AsyncSequence {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   associatedtype Failure = any Error where Self.Failure == Self.AsyncIterator.Failure}
  |                  `- note: 'Failure' declared here
4 |
[355/384] Compiling AsyncExtensions AsyncSequence+Share.swift
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncSequence+EraseToAnyAsyncSequence.swift:23:39: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
21 |
22 |   public init<Base: AsyncSequence>(_ base: Base) where Base.Element == Element, Base: Sendable {
23 |     self.makeAsyncIteratorClosure = { AnyAsyncIterator(base: base.makeAsyncIterator()) }
   |                                       `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
24 |   }
25 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncSubjects/AsyncSubject.swift:10:18: warning: redeclaration of associated type 'Failure' from protocol 'AsyncSequence' is better expressed as a 'where' clause on the protocol
 8 | #if swift(>=5.7)
 9 | public protocol AsyncSubject<Element, Failure>: AnyObject, AsyncSequence, Sendable where AsyncIterator: AsyncSubjectIterator {
10 |   associatedtype Failure: Error
   |                  `- warning: redeclaration of associated type 'Failure' from protocol 'AsyncSequence' is better expressed as a 'where' clause on the protocol
11 |
12 |   func send(_ element: Element)
_Concurrency.AsyncSequence.Failure:3:18: note: 'Failure' declared here
1 | protocol AsyncSequence {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   associatedtype Failure = any Error where Self.Failure == Self.AsyncIterator.Failure}
  |                  `- note: 'Failure' declared here
4 |
[356/384] Compiling AsyncExtensions Termination.swift
[357/384] Compiling AsyncExtensions AsyncEmptySequence.swift
[358/384] Compiling AsyncExtensions AsyncFailSequence.swift
[359/384] Compiling AsyncExtensions AsyncJustSequence.swift
[360/384] Compiling AsyncExtensions AsyncLazySequence.swift
[361/384] Compiling AsyncExtensions AsyncMerge2Sequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:42:7: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
 42 |       regulator1.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 43 |       regulator2.requestNextRegulatedElement()
 44 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:38:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 2))
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 40 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:43:7: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 41 |     self.requestNextRegulatedElements = {
 42 |       regulator1.requestNextRegulatedElement()
 43 |       regulator2.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 44 |     }
 45 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:39:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:38:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 2))
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 40 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:39:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:49:17: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 47 |       await withTaskGroup(of: Void.self) { group in
 48 |         group.addTask {
 49 |           await regulator1.iterate()
    |                 `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 50 |         }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:38:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 2))
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 40 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:53:17: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 51 |
 52 |         group.addTask {
 53 |           await regulator2.iterate()
    |                 `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 54 |         }
 55 |       }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:39:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:71:7: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
 71 |       regulator1.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 72 |       regulator2.requestNextRegulatedElement()
 73 |       regulator3.requestNextRegulatedElement()
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:66:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 3))
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:72:7: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 70 |     self.requestNextRegulatedElements = {
 71 |       regulator1.requestNextRegulatedElement()
 72 |       regulator2.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 73 |       regulator3.requestNextRegulatedElement()
 74 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:67:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 69 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:73:7: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 71 |       regulator1.requestNextRegulatedElement()
 72 |       regulator2.requestNextRegulatedElement()
 73 |       regulator3.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 74 |     }
 75 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:68:9: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:66:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 3))
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:67:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 69 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:68:9: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:79:17: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 77 |       await withTaskGroup(of: Void.self) { group in
 78 |         group.addTask {
 79 |           await regulator1.iterate()
    |                 `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 80 |         }
 81 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:66:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 3))
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:83:17: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 81 |
 82 |         group.addTask {
 83 |           await regulator2.iterate()
    |                 `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 84 |         }
 85 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:67:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 69 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:87:17: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |
 86 |         group.addTask {
 87 |           await regulator3.iterate()
    |                 `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 88 |         }
 89 |       }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:68:9: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:107:24: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
105 |     let immutableRegulators = regulators
106 |     self.requestNextRegulatedElements = {
107 |       for regulator in immutableRegulators {
    |                        `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
108 |         regulator.requestNextRegulatedElement()
109 |       }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:105:9: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |     }
104 |
105 |     let immutableRegulators = regulators
    |         `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
106 |     self.requestNextRegulatedElements = {
107 |       for regulator in immutableRegulators {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:105:9: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |     }
104 |
105 |     let immutableRegulators = regulators
    |         `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
106 |     self.requestNextRegulatedElements = {
107 |       for regulator in immutableRegulators {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:116:19: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
114 |         for regulators in immutableRegulators {
115 |           group.addTask {
116 |             await regulators.iterate()
    |                   `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
117 |           }
118 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:114:13: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
112 |     self.task = Task {
113 |       await withTaskGroup(of: Void.self) { group in
114 |         for regulators in immutableRegulators {
    |             `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
115 |           group.addTask {
116 |             await regulators.iterate()
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:198:11: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
196 |
197 |   func next() async -> RegulatedElement<Element> {
198 |     await withTaskCancellationHandler {
    |           |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |           `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
199 |       self.unsuspendAndClearOnCancel()
200 |     } operation: {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:136:33: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
134 |
135 |     mutating func startOthers() {
136 |       self.othersTask = Task { [othersState, other1, other2, onOther1Element, onOther2Element] in
    |                                 `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
137 |         await withTaskGroup(of: Void.self) { group in
138 |           group.addTask {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:140:40: warning: capture of non-sendable type 'Other1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 |           group.addTask {
139 |             do {
140 |               for try await element in other1 {
    |                                        `- warning: capture of non-sendable type 'Other1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 |                 othersState.withCriticalRegion { state in
142 |                   state.other1State = .element(.success(element))
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:141:29: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
139 |             do {
140 |               for try await element in other1 {
141 |                 othersState.withCriticalRegion { state in
    |                             `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |                   state.other1State = .element(.success(element))
143 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:136:33: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
134 |
135 |     mutating func startOthers() {
136 |       self.othersTask = Task { [othersState, other1, other2, onOther1Element, onOther2Element] in
    |                                 `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
137 |         await withTaskGroup(of: Void.self) { group in
138 |           group.addTask {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:155:40: warning: capture of non-sendable type 'Other2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
153 |           group.addTask {
154 |             do {
155 |               for try await element in other2 {
    |                                        `- warning: capture of non-sendable type 'Other2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |                 othersState.withCriticalRegion { state in
157 |                   state.other2State = .element(.success(element))
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:156:29: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
154 |             do {
155 |               for try await element in other2 {
156 |                 othersState.withCriticalRegion { state in
    |                             `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
157 |                   state.other2State = .element(.success(element))
158 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:136:33: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
134 |
135 |     mutating func startOthers() {
136 |       self.othersTask = Task { [othersState, other1, other2, onOther1Element, onOther2Element] in
    |                                 `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
137 |         await withTaskGroup(of: Void.self) { group in
138 |           group.addTask {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:175:24: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
173 |       guard !shouldReturnNil else { return nil }
174 |
175 |       return try await withTaskCancellationHandler { [isTerminated, othersTask] in
    |                        |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |                        `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
176 |         isTerminated.withCriticalRegion { isTerminated in
177 |           isTerminated = true
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[362/384] Compiling AsyncExtensions AsyncMerge3Sequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:42:7: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
 42 |       regulator1.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 43 |       regulator2.requestNextRegulatedElement()
 44 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:38:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 2))
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 40 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:43:7: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 41 |     self.requestNextRegulatedElements = {
 42 |       regulator1.requestNextRegulatedElement()
 43 |       regulator2.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 44 |     }
 45 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:39:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:38:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 2))
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 40 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:39:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:49:17: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 47 |       await withTaskGroup(of: Void.self) { group in
 48 |         group.addTask {
 49 |           await regulator1.iterate()
    |                 `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 50 |         }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:38:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 2))
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 40 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:53:17: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 51 |
 52 |         group.addTask {
 53 |           await regulator2.iterate()
    |                 `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 54 |         }
 55 |       }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:39:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:71:7: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
 71 |       regulator1.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 72 |       regulator2.requestNextRegulatedElement()
 73 |       regulator3.requestNextRegulatedElement()
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:66:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 3))
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:72:7: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 70 |     self.requestNextRegulatedElements = {
 71 |       regulator1.requestNextRegulatedElement()
 72 |       regulator2.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 73 |       regulator3.requestNextRegulatedElement()
 74 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:67:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 69 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:73:7: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 71 |       regulator1.requestNextRegulatedElement()
 72 |       regulator2.requestNextRegulatedElement()
 73 |       regulator3.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 74 |     }
 75 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:68:9: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:66:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 3))
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:67:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 69 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:68:9: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:79:17: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 77 |       await withTaskGroup(of: Void.self) { group in
 78 |         group.addTask {
 79 |           await regulator1.iterate()
    |                 `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 80 |         }
 81 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:66:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 3))
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:83:17: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 81 |
 82 |         group.addTask {
 83 |           await regulator2.iterate()
    |                 `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 84 |         }
 85 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:67:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 69 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:87:17: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |
 86 |         group.addTask {
 87 |           await regulator3.iterate()
    |                 `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 88 |         }
 89 |       }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:68:9: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:107:24: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
105 |     let immutableRegulators = regulators
106 |     self.requestNextRegulatedElements = {
107 |       for regulator in immutableRegulators {
    |                        `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
108 |         regulator.requestNextRegulatedElement()
109 |       }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:105:9: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |     }
104 |
105 |     let immutableRegulators = regulators
    |         `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
106 |     self.requestNextRegulatedElements = {
107 |       for regulator in immutableRegulators {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:105:9: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |     }
104 |
105 |     let immutableRegulators = regulators
    |         `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
106 |     self.requestNextRegulatedElements = {
107 |       for regulator in immutableRegulators {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:116:19: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
114 |         for regulators in immutableRegulators {
115 |           group.addTask {
116 |             await regulators.iterate()
    |                   `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
117 |           }
118 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:114:13: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
112 |     self.task = Task {
113 |       await withTaskGroup(of: Void.self) { group in
114 |         for regulators in immutableRegulators {
    |             `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
115 |           group.addTask {
116 |             await regulators.iterate()
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:198:11: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
196 |
197 |   func next() async -> RegulatedElement<Element> {
198 |     await withTaskCancellationHandler {
    |           |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |           `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
199 |       self.unsuspendAndClearOnCancel()
200 |     } operation: {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:136:33: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
134 |
135 |     mutating func startOthers() {
136 |       self.othersTask = Task { [othersState, other1, other2, onOther1Element, onOther2Element] in
    |                                 `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
137 |         await withTaskGroup(of: Void.self) { group in
138 |           group.addTask {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:140:40: warning: capture of non-sendable type 'Other1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 |           group.addTask {
139 |             do {
140 |               for try await element in other1 {
    |                                        `- warning: capture of non-sendable type 'Other1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 |                 othersState.withCriticalRegion { state in
142 |                   state.other1State = .element(.success(element))
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:141:29: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
139 |             do {
140 |               for try await element in other1 {
141 |                 othersState.withCriticalRegion { state in
    |                             `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |                   state.other1State = .element(.success(element))
143 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:136:33: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
134 |
135 |     mutating func startOthers() {
136 |       self.othersTask = Task { [othersState, other1, other2, onOther1Element, onOther2Element] in
    |                                 `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
137 |         await withTaskGroup(of: Void.self) { group in
138 |           group.addTask {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:155:40: warning: capture of non-sendable type 'Other2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
153 |           group.addTask {
154 |             do {
155 |               for try await element in other2 {
    |                                        `- warning: capture of non-sendable type 'Other2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |                 othersState.withCriticalRegion { state in
157 |                   state.other2State = .element(.success(element))
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:156:29: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
154 |             do {
155 |               for try await element in other2 {
156 |                 othersState.withCriticalRegion { state in
    |                             `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
157 |                   state.other2State = .element(.success(element))
158 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:136:33: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
134 |
135 |     mutating func startOthers() {
136 |       self.othersTask = Task { [othersState, other1, other2, onOther1Element, onOther2Element] in
    |                                 `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
137 |         await withTaskGroup(of: Void.self) { group in
138 |           group.addTask {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:175:24: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
173 |       guard !shouldReturnNil else { return nil }
174 |
175 |       return try await withTaskCancellationHandler { [isTerminated, othersTask] in
    |                        |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |                        `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
176 |         isTerminated.withCriticalRegion { isTerminated in
177 |           isTerminated = true
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[363/384] Compiling AsyncExtensions AsyncMergeSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:42:7: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
 42 |       regulator1.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 43 |       regulator2.requestNextRegulatedElement()
 44 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:38:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 2))
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 40 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:43:7: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 41 |     self.requestNextRegulatedElements = {
 42 |       regulator1.requestNextRegulatedElement()
 43 |       regulator2.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 44 |     }
 45 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:39:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:38:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 2))
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 40 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:39:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:49:17: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 47 |       await withTaskGroup(of: Void.self) { group in
 48 |         group.addTask {
 49 |           await regulator1.iterate()
    |                 `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 50 |         }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:38:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 2))
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 40 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:53:17: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 51 |
 52 |         group.addTask {
 53 |           await regulator2.iterate()
    |                 `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 54 |         }
 55 |       }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:39:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:71:7: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
 71 |       regulator1.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 72 |       regulator2.requestNextRegulatedElement()
 73 |       regulator3.requestNextRegulatedElement()
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:66:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 3))
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:72:7: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 70 |     self.requestNextRegulatedElements = {
 71 |       regulator1.requestNextRegulatedElement()
 72 |       regulator2.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 73 |       regulator3.requestNextRegulatedElement()
 74 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:67:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 69 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:73:7: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 71 |       regulator1.requestNextRegulatedElement()
 72 |       regulator2.requestNextRegulatedElement()
 73 |       regulator3.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 74 |     }
 75 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:68:9: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:66:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 3))
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:67:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 69 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:68:9: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:79:17: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 77 |       await withTaskGroup(of: Void.self) { group in
 78 |         group.addTask {
 79 |           await regulator1.iterate()
    |                 `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 80 |         }
 81 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:66:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 3))
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:83:17: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 81 |
 82 |         group.addTask {
 83 |           await regulator2.iterate()
    |                 `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 84 |         }
 85 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:67:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 69 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:87:17: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |
 86 |         group.addTask {
 87 |           await regulator3.iterate()
    |                 `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 88 |         }
 89 |       }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:68:9: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:107:24: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
105 |     let immutableRegulators = regulators
106 |     self.requestNextRegulatedElements = {
107 |       for regulator in immutableRegulators {
    |                        `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
108 |         regulator.requestNextRegulatedElement()
109 |       }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:105:9: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |     }
104 |
105 |     let immutableRegulators = regulators
    |         `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
106 |     self.requestNextRegulatedElements = {
107 |       for regulator in immutableRegulators {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:105:9: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |     }
104 |
105 |     let immutableRegulators = regulators
    |         `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
106 |     self.requestNextRegulatedElements = {
107 |       for regulator in immutableRegulators {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:116:19: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
114 |         for regulators in immutableRegulators {
115 |           group.addTask {
116 |             await regulators.iterate()
    |                   `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
117 |           }
118 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:114:13: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
112 |     self.task = Task {
113 |       await withTaskGroup(of: Void.self) { group in
114 |         for regulators in immutableRegulators {
    |             `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
115 |           group.addTask {
116 |             await regulators.iterate()
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:198:11: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
196 |
197 |   func next() async -> RegulatedElement<Element> {
198 |     await withTaskCancellationHandler {
    |           |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |           `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
199 |       self.unsuspendAndClearOnCancel()
200 |     } operation: {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:136:33: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
134 |
135 |     mutating func startOthers() {
136 |       self.othersTask = Task { [othersState, other1, other2, onOther1Element, onOther2Element] in
    |                                 `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
137 |         await withTaskGroup(of: Void.self) { group in
138 |           group.addTask {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:140:40: warning: capture of non-sendable type 'Other1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 |           group.addTask {
139 |             do {
140 |               for try await element in other1 {
    |                                        `- warning: capture of non-sendable type 'Other1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 |                 othersState.withCriticalRegion { state in
142 |                   state.other1State = .element(.success(element))
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:141:29: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
139 |             do {
140 |               for try await element in other1 {
141 |                 othersState.withCriticalRegion { state in
    |                             `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |                   state.other1State = .element(.success(element))
143 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:136:33: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
134 |
135 |     mutating func startOthers() {
136 |       self.othersTask = Task { [othersState, other1, other2, onOther1Element, onOther2Element] in
    |                                 `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
137 |         await withTaskGroup(of: Void.self) { group in
138 |           group.addTask {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:155:40: warning: capture of non-sendable type 'Other2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
153 |           group.addTask {
154 |             do {
155 |               for try await element in other2 {
    |                                        `- warning: capture of non-sendable type 'Other2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |                 othersState.withCriticalRegion { state in
157 |                   state.other2State = .element(.success(element))
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:156:29: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
154 |             do {
155 |               for try await element in other2 {
156 |                 othersState.withCriticalRegion { state in
    |                             `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
157 |                   state.other2State = .element(.success(element))
158 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:136:33: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
134 |
135 |     mutating func startOthers() {
136 |       self.othersTask = Task { [othersState, other1, other2, onOther1Element, onOther2Element] in
    |                                 `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
137 |         await withTaskGroup(of: Void.self) { group in
138 |           group.addTask {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:175:24: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
173 |       guard !shouldReturnNil else { return nil }
174 |
175 |       return try await withTaskCancellationHandler { [isTerminated, othersTask] in
    |                        |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |                        `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
176 |         isTerminated.withCriticalRegion { isTerminated in
177 |           isTerminated = true
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[364/384] Compiling AsyncExtensions MergeStateMachine.swift
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:42:7: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
 42 |       regulator1.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 43 |       regulator2.requestNextRegulatedElement()
 44 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:38:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 2))
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 40 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:43:7: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 41 |     self.requestNextRegulatedElements = {
 42 |       regulator1.requestNextRegulatedElement()
 43 |       regulator2.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 44 |     }
 45 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:39:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:38:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 2))
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 40 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:39:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:49:17: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 47 |       await withTaskGroup(of: Void.self) { group in
 48 |         group.addTask {
 49 |           await regulator1.iterate()
    |                 `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 50 |         }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:38:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 2))
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 40 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:53:17: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 51 |
 52 |         group.addTask {
 53 |           await regulator2.iterate()
    |                 `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 54 |         }
 55 |       }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:39:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:71:7: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
 71 |       regulator1.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 72 |       regulator2.requestNextRegulatedElement()
 73 |       regulator3.requestNextRegulatedElement()
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:66:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 3))
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:72:7: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 70 |     self.requestNextRegulatedElements = {
 71 |       regulator1.requestNextRegulatedElement()
 72 |       regulator2.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 73 |       regulator3.requestNextRegulatedElement()
 74 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:67:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 69 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:73:7: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 71 |       regulator1.requestNextRegulatedElement()
 72 |       regulator2.requestNextRegulatedElement()
 73 |       regulator3.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 74 |     }
 75 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:68:9: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:66:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 3))
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:67:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 69 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:68:9: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:79:17: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 77 |       await withTaskGroup(of: Void.self) { group in
 78 |         group.addTask {
 79 |           await regulator1.iterate()
    |                 `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 80 |         }
 81 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:66:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 3))
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:83:17: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 81 |
 82 |         group.addTask {
 83 |           await regulator2.iterate()
    |                 `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 84 |         }
 85 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:67:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 69 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:87:17: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |
 86 |         group.addTask {
 87 |           await regulator3.iterate()
    |                 `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 88 |         }
 89 |       }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:68:9: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:107:24: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
105 |     let immutableRegulators = regulators
106 |     self.requestNextRegulatedElements = {
107 |       for regulator in immutableRegulators {
    |                        `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
108 |         regulator.requestNextRegulatedElement()
109 |       }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:105:9: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |     }
104 |
105 |     let immutableRegulators = regulators
    |         `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
106 |     self.requestNextRegulatedElements = {
107 |       for regulator in immutableRegulators {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:105:9: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |     }
104 |
105 |     let immutableRegulators = regulators
    |         `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
106 |     self.requestNextRegulatedElements = {
107 |       for regulator in immutableRegulators {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:116:19: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
114 |         for regulators in immutableRegulators {
115 |           group.addTask {
116 |             await regulators.iterate()
    |                   `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
117 |           }
118 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:114:13: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
112 |     self.task = Task {
113 |       await withTaskGroup(of: Void.self) { group in
114 |         for regulators in immutableRegulators {
    |             `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
115 |           group.addTask {
116 |             await regulators.iterate()
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:198:11: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
196 |
197 |   func next() async -> RegulatedElement<Element> {
198 |     await withTaskCancellationHandler {
    |           |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |           `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
199 |       self.unsuspendAndClearOnCancel()
200 |     } operation: {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:136:33: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
134 |
135 |     mutating func startOthers() {
136 |       self.othersTask = Task { [othersState, other1, other2, onOther1Element, onOther2Element] in
    |                                 `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
137 |         await withTaskGroup(of: Void.self) { group in
138 |           group.addTask {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:140:40: warning: capture of non-sendable type 'Other1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 |           group.addTask {
139 |             do {
140 |               for try await element in other1 {
    |                                        `- warning: capture of non-sendable type 'Other1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 |                 othersState.withCriticalRegion { state in
142 |                   state.other1State = .element(.success(element))
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:141:29: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
139 |             do {
140 |               for try await element in other1 {
141 |                 othersState.withCriticalRegion { state in
    |                             `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |                   state.other1State = .element(.success(element))
143 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:136:33: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
134 |
135 |     mutating func startOthers() {
136 |       self.othersTask = Task { [othersState, other1, other2, onOther1Element, onOther2Element] in
    |                                 `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
137 |         await withTaskGroup(of: Void.self) { group in
138 |           group.addTask {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:155:40: warning: capture of non-sendable type 'Other2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
153 |           group.addTask {
154 |             do {
155 |               for try await element in other2 {
    |                                        `- warning: capture of non-sendable type 'Other2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |                 othersState.withCriticalRegion { state in
157 |                   state.other2State = .element(.success(element))
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:156:29: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
154 |             do {
155 |               for try await element in other2 {
156 |                 othersState.withCriticalRegion { state in
    |                             `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
157 |                   state.other2State = .element(.success(element))
158 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:136:33: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
134 |
135 |     mutating func startOthers() {
136 |       self.othersTask = Task { [othersState, other1, other2, onOther1Element, onOther2Element] in
    |                                 `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
137 |         await withTaskGroup(of: Void.self) { group in
138 |           group.addTask {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:175:24: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
173 |       guard !shouldReturnNil else { return nil }
174 |
175 |       return try await withTaskCancellationHandler { [isTerminated, othersTask] in
    |                        |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |                        `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
176 |         isTerminated.withCriticalRegion { isTerminated in
177 |           isTerminated = true
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[365/384] Compiling AsyncExtensions AsyncWithLatestFrom2Sequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:42:7: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
 42 |       regulator1.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 43 |       regulator2.requestNextRegulatedElement()
 44 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:38:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 2))
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 40 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:43:7: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 41 |     self.requestNextRegulatedElements = {
 42 |       regulator1.requestNextRegulatedElement()
 43 |       regulator2.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 44 |     }
 45 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:39:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:38:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 2))
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 40 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:39:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:49:17: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 47 |       await withTaskGroup(of: Void.self) { group in
 48 |         group.addTask {
 49 |           await regulator1.iterate()
    |                 `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 50 |         }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:38:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 36 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 2))
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 40 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:53:17: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 51 |
 52 |         group.addTask {
 53 |           await regulator2.iterate()
    |                 `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 54 |         }
 55 |       }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:39:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 37 |
 38 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 39 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 40 |
 41 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:71:7: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
 71 |       regulator1.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 72 |       regulator2.requestNextRegulatedElement()
 73 |       regulator3.requestNextRegulatedElement()
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:66:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 3))
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:72:7: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 70 |     self.requestNextRegulatedElements = {
 71 |       regulator1.requestNextRegulatedElement()
 72 |       regulator2.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 73 |       regulator3.requestNextRegulatedElement()
 74 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:67:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 69 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:73:7: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 71 |       regulator1.requestNextRegulatedElement()
 72 |       regulator2.requestNextRegulatedElement()
 73 |       regulator3.requestNextRegulatedElement()
    |       `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 74 |     }
 75 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:68:9: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:66:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 3))
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:67:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 69 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:68:9: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:79:17: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 77 |       await withTaskGroup(of: Void.self) { group in
 78 |         group.addTask {
 79 |           await regulator1.iterate()
    |                 `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 80 |         }
 81 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:66:9: warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 64 |     self.state = ManagedCriticalState(State(buffer: .idle, basesToTerminate: 3))
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base1.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:83:17: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 81 |
 82 |         group.addTask {
 83 |           await regulator2.iterate()
    |                 `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 84 |         }
 85 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:67:9: warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 65 |
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base2.Type' in an isolated closure; this is an error in the Swift 6 language mode
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 69 |
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:87:17: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 85 |
 86 |         group.addTask {
 87 |           await regulator3.iterate()
    |                 `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 88 |         }
 89 |       }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:68:9: warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 66 |     let regulator1 = Regulator(base1, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 67 |     let regulator2 = Regulator(base2, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
 68 |     let regulator3 = Regulator(base3, onNextRegulatedElement: { [state] in Self.onNextRegulatedElement($0, state: state) })
    |         `- warning: capture of non-sendable type 'Base3.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |
 70 |     self.requestNextRegulatedElements = {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:107:24: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
105 |     let immutableRegulators = regulators
106 |     self.requestNextRegulatedElements = {
107 |       for regulator in immutableRegulators {
    |                        `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
108 |         regulator.requestNextRegulatedElement()
109 |       }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:105:9: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |     }
104 |
105 |     let immutableRegulators = regulators
    |         `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
106 |     self.requestNextRegulatedElements = {
107 |       for regulator in immutableRegulators {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:105:9: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
103 |     }
104 |
105 |     let immutableRegulators = regulators
    |         `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
106 |     self.requestNextRegulatedElements = {
107 |       for regulator in immutableRegulators {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:116:19: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
114 |         for regulators in immutableRegulators {
115 |           group.addTask {
116 |             await regulators.iterate()
    |                   `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
117 |           }
118 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:114:13: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
112 |     self.task = Task {
113 |       await withTaskGroup(of: Void.self) { group in
114 |         for regulators in immutableRegulators {
    |             `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
115 |           group.addTask {
116 |             await regulators.iterate()
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Merge/MergeStateMachine.swift:198:11: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
196 |
197 |   func next() async -> RegulatedElement<Element> {
198 |     await withTaskCancellationHandler {
    |           |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |           `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
199 |       self.unsuspendAndClearOnCancel()
200 |     } operation: {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:136:33: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
134 |
135 |     mutating func startOthers() {
136 |       self.othersTask = Task { [othersState, other1, other2, onOther1Element, onOther2Element] in
    |                                 `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
137 |         await withTaskGroup(of: Void.self) { group in
138 |           group.addTask {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:140:40: warning: capture of non-sendable type 'Other1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 |           group.addTask {
139 |             do {
140 |               for try await element in other1 {
    |                                        `- warning: capture of non-sendable type 'Other1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 |                 othersState.withCriticalRegion { state in
142 |                   state.other1State = .element(.success(element))
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:141:29: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
139 |             do {
140 |               for try await element in other1 {
141 |                 othersState.withCriticalRegion { state in
    |                             `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 |                   state.other1State = .element(.success(element))
143 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:136:33: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
134 |
135 |     mutating func startOthers() {
136 |       self.othersTask = Task { [othersState, other1, other2, onOther1Element, onOther2Element] in
    |                                 `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
137 |         await withTaskGroup(of: Void.self) { group in
138 |           group.addTask {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:155:40: warning: capture of non-sendable type 'Other2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
153 |           group.addTask {
154 |             do {
155 |               for try await element in other2 {
    |                                        `- warning: capture of non-sendable type 'Other2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
156 |                 othersState.withCriticalRegion { state in
157 |                   state.other2State = .element(.success(element))
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:156:29: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
154 |             do {
155 |               for try await element in other2 {
156 |                 othersState.withCriticalRegion { state in
    |                             `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
157 |                   state.other2State = .element(.success(element))
158 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:136:33: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
134 |
135 |     mutating func startOthers() {
136 |       self.othersTask = Task { [othersState, other1, other2, onOther1Element, onOther2Element] in
    |                                 `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
137 |         await withTaskGroup(of: Void.self) { group in
138 |           group.addTask {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift:175:24: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
173 |       guard !shouldReturnNil else { return nil }
174 |
175 |       return try await withTaskCancellationHandler { [isTerminated, othersTask] in
    |                        |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |                        `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
176 |         isTerminated.withCriticalRegion { isTerminated in
177 |           isTerminated = true
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[366/384] Compiling AsyncExtensions Zip2StateMachine.swift
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:19:39: warning: capture of non-sendable type 'Base1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 17 |         await withTaskGroup(of: Void.self) { group in
 18 |           group.addTask {
 19 |             var base1Iterator = base1.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 20 |
 21 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:57:39: warning: capture of non-sendable type 'Base2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |
 56 |           group.addTask {
 57 |             var base2Iterator = base2.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |
 59 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:95:39: warning: capture of non-sendable type 'Base3.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 93 |
 94 |           group.addTask {
 95 |             var base3Iterator = base3.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base3.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 96 |
 97 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:188:15: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
186 |
187 |   func next() async rethrows -> (Base1.Element, Base2.Element, Base3.Element)? {
188 |     try await withTaskCancellationHandler {
    |               |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |               `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
189 |       let output = self.stateMachine.withCriticalRegion { stateMachine in
190 |         stateMachine.rootTaskIsCancelled()
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/ZipRuntime.swift:28:39: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 26 |
 27 |             group.addTask {
 28 |               var baseIterator = base.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 29 |
 30 |               do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/ZipRuntime.swift:122:15: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
120 |
121 |   func next() async rethrows -> [Base.Element]? {
122 |     try await withTaskCancellationHandler {
    |               |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |               `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
123 |       let output = self.stateMachine.withCriticalRegion { stateMachine in
124 |         stateMachine.rootTaskIsCancelled()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[367/384] Compiling AsyncExtensions Zip3Runtime.swift
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:19:39: warning: capture of non-sendable type 'Base1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 17 |         await withTaskGroup(of: Void.self) { group in
 18 |           group.addTask {
 19 |             var base1Iterator = base1.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 20 |
 21 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:57:39: warning: capture of non-sendable type 'Base2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |
 56 |           group.addTask {
 57 |             var base2Iterator = base2.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |
 59 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:95:39: warning: capture of non-sendable type 'Base3.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 93 |
 94 |           group.addTask {
 95 |             var base3Iterator = base3.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base3.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 96 |
 97 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:188:15: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
186 |
187 |   func next() async rethrows -> (Base1.Element, Base2.Element, Base3.Element)? {
188 |     try await withTaskCancellationHandler {
    |               |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |               `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
189 |       let output = self.stateMachine.withCriticalRegion { stateMachine in
190 |         stateMachine.rootTaskIsCancelled()
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/ZipRuntime.swift:28:39: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 26 |
 27 |             group.addTask {
 28 |               var baseIterator = base.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 29 |
 30 |               do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/ZipRuntime.swift:122:15: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
120 |
121 |   func next() async rethrows -> [Base.Element]? {
122 |     try await withTaskCancellationHandler {
    |               |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |               `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
123 |       let output = self.stateMachine.withCriticalRegion { stateMachine in
124 |         stateMachine.rootTaskIsCancelled()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[368/384] Compiling AsyncExtensions Zip3StateMachine.swift
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:19:39: warning: capture of non-sendable type 'Base1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 17 |         await withTaskGroup(of: Void.self) { group in
 18 |           group.addTask {
 19 |             var base1Iterator = base1.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 20 |
 21 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:57:39: warning: capture of non-sendable type 'Base2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |
 56 |           group.addTask {
 57 |             var base2Iterator = base2.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |
 59 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:95:39: warning: capture of non-sendable type 'Base3.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 93 |
 94 |           group.addTask {
 95 |             var base3Iterator = base3.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base3.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 96 |
 97 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:188:15: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
186 |
187 |   func next() async rethrows -> (Base1.Element, Base2.Element, Base3.Element)? {
188 |     try await withTaskCancellationHandler {
    |               |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |               `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
189 |       let output = self.stateMachine.withCriticalRegion { stateMachine in
190 |         stateMachine.rootTaskIsCancelled()
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/ZipRuntime.swift:28:39: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 26 |
 27 |             group.addTask {
 28 |               var baseIterator = base.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 29 |
 30 |               do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/ZipRuntime.swift:122:15: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
120 |
121 |   func next() async rethrows -> [Base.Element]? {
122 |     try await withTaskCancellationHandler {
    |               |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |               `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
123 |       let output = self.stateMachine.withCriticalRegion { stateMachine in
124 |         stateMachine.rootTaskIsCancelled()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[369/384] Compiling AsyncExtensions ZipRuntime.swift
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:19:39: warning: capture of non-sendable type 'Base1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 17 |         await withTaskGroup(of: Void.self) { group in
 18 |           group.addTask {
 19 |             var base1Iterator = base1.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 20 |
 21 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:57:39: warning: capture of non-sendable type 'Base2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |
 56 |           group.addTask {
 57 |             var base2Iterator = base2.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |
 59 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:95:39: warning: capture of non-sendable type 'Base3.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 93 |
 94 |           group.addTask {
 95 |             var base3Iterator = base3.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base3.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 96 |
 97 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:188:15: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
186 |
187 |   func next() async rethrows -> (Base1.Element, Base2.Element, Base3.Element)? {
188 |     try await withTaskCancellationHandler {
    |               |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |               `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
189 |       let output = self.stateMachine.withCriticalRegion { stateMachine in
190 |         stateMachine.rootTaskIsCancelled()
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/ZipRuntime.swift:28:39: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 26 |
 27 |             group.addTask {
 28 |               var baseIterator = base.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 29 |
 30 |               do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/ZipRuntime.swift:122:15: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
120 |
121 |   func next() async rethrows -> [Base.Element]? {
122 |     try await withTaskCancellationHandler {
    |               |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |               `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
123 |       let output = self.stateMachine.withCriticalRegion { stateMachine in
124 |         stateMachine.rootTaskIsCancelled()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[370/384] Compiling AsyncExtensions ZipStateMachine.swift
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:19:39: warning: capture of non-sendable type 'Base1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 17 |         await withTaskGroup(of: Void.self) { group in
 18 |           group.addTask {
 19 |             var base1Iterator = base1.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base1.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 20 |
 21 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:57:39: warning: capture of non-sendable type 'Base2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 55 |
 56 |           group.addTask {
 57 |             var base2Iterator = base2.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base2.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 58 |
 59 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:95:39: warning: capture of non-sendable type 'Base3.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 93 |
 94 |           group.addTask {
 95 |             var base3Iterator = base3.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base3.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 96 |
 97 |             do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/Zip3Runtime.swift:188:15: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
186 |
187 |   func next() async rethrows -> (Base1.Element, Base2.Element, Base3.Element)? {
188 |     try await withTaskCancellationHandler {
    |               |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |               `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
189 |       let output = self.stateMachine.withCriticalRegion { stateMachine in
190 |         stateMachine.rootTaskIsCancelled()
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/ZipRuntime.swift:28:39: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 26 |
 27 |             group.addTask {
 28 |               var baseIterator = base.makeAsyncIterator()
    |                                       `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
 29 |
 30 |               do {
/Users/admin/builder/spi-builder-workspace/Sources/Combiners/Zip/ZipRuntime.swift:122:15: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
120 |
121 |   func next() async rethrows -> [Base.Element]? {
122 |     try await withTaskCancellationHandler {
    |               |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |               `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
123 |       let output = self.stateMachine.withCriticalRegion { stateMachine in
124 |         stateMachine.rootTaskIsCancelled()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[371/384] Compiling AsyncExtensions AsyncMulticastSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncSubjects/AsyncSubject.swift:10:18: warning: redeclaration of associated type 'Failure' from protocol 'AsyncSequence' is better expressed as a 'where' clause on the protocol
 8 | #if swift(>=5.7)
 9 | public protocol AsyncSubject<Element, Failure>: AnyObject, AsyncSequence, Sendable where AsyncIterator: AsyncSubjectIterator {
10 |   associatedtype Failure: Error
   |                  `- warning: redeclaration of associated type 'Failure' from protocol 'AsyncSequence' is better expressed as a 'where' clause on the protocol
11 |
12 |   func send(_ element: Element)
_Concurrency.AsyncSequence.Failure:3:18: note: 'Failure' declared here
1 | protocol AsyncSequence {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   associatedtype Failure = any Error where Self.Failure == Self.AsyncIterator.Failure}
  |                  `- note: 'Failure' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncMulticastSequence.swift:53:33: error: 'Failure' is only available in macOS 15.0 or newer
  6 | //
  7 |
  8 | public extension AsyncSequence {
    |        `- note: add @available attribute to enclosing extension
  9 |   /// Use multicast  when you have multiple client iterations, but you want the base async sequence
 10 |   /// to only produce a single `AsyncIterator`.
    :
 50 |   ///
 51 |   /// - Parameter subject: An `AsyncSubject` to deliver elements to downstream client loops.
 52 |   func multicast<S: AsyncSubject>(_ subject: S) -> AsyncMulticastSequence<Self, S>
    |        `- note: add @available attribute to enclosing instance method
 53 |   where S.Element == Element, S.Failure == Error {
    |                                 `- error: 'Failure' is only available in macOS 15.0 or newer
 54 |     AsyncMulticastSequence(self, subject: subject)
 55 |   }
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncMulticastSequence.swift:59:48: error: 'Failure' is only available in macOS 15.0 or newer
 56 | }
 57 |
 58 | public final class AsyncMulticastSequence<Base: AsyncSequence, Subject: AsyncSubject>: AsyncSequence, Sendable
    |                    `- note: add @available attribute to enclosing generic class
 59 | where Base.Element == Subject.Element, Subject.Failure == Error, Base.AsyncIterator: Sendable {
    |                                                `- error: 'Failure' is only available in macOS 15.0 or newer
 60 |   public typealias Element = Base.Element
 61 |   public typealias AsyncIterator = Iterator
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncMulticastSequence.swift:109:50: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
107 |   func next() async {
108 |     await Task {
109 |       let (canAccessBase, iterator) = self.state.withCriticalRegion { state -> (Bool, Base.AsyncIterator?) in
    |                                                  `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
110 |         switch state {
111 |           case .available(let iterator):
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncMulticastSequence.swift:107:8: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
105 |   }
106 |
107 |   func next() async {
    |        `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
108 |     await Task {
109 |       let (canAccessBase, iterator) = self.state.withCriticalRegion { state -> (Bool, Base.AsyncIterator?) in
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncPrependSequence.swift:28:18: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
26 |   /// - Parameter element: The element to prepend.
27 |   /// - Returns: The async sequence prepended with the element.
28 |   func prepend(_ element: @Sendable @autoclosure @escaping () -> Element) -> AsyncPrependSequence<Self> {
   |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
29 |     AsyncPrependSequence(self, prependElement: element())
30 |   }
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncPrependSequence.swift:51:28: warning: cannot convert '@Sendable () -> Base.Element' to '() async throws -> Base.Element' because crossing of an isolation boundary requires parameter and result types to conform to 'Sendable' protocol; this will be an error in a future Swift language mode
49 |     Iterator(
50 |       base: self.base.makeAsyncIterator(),
51 |       prependElement: self.prependElement
   |                            |- warning: cannot convert '@Sendable () -> Base.Element' to '() async throws -> Base.Element' because crossing of an isolation boundary requires parameter and result types to conform to 'Sendable' protocol; this will be an error in a future Swift language mode
   |                            `- note: type 'Base.Element' does not conform to 'Sendable' protocol
52 |     )
53 |   }
[372/384] Compiling AsyncExtensions AsyncPrependSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncSubjects/AsyncSubject.swift:10:18: warning: redeclaration of associated type 'Failure' from protocol 'AsyncSequence' is better expressed as a 'where' clause on the protocol
 8 | #if swift(>=5.7)
 9 | public protocol AsyncSubject<Element, Failure>: AnyObject, AsyncSequence, Sendable where AsyncIterator: AsyncSubjectIterator {
10 |   associatedtype Failure: Error
   |                  `- warning: redeclaration of associated type 'Failure' from protocol 'AsyncSequence' is better expressed as a 'where' clause on the protocol
11 |
12 |   func send(_ element: Element)
_Concurrency.AsyncSequence.Failure:3:18: note: 'Failure' declared here
1 | protocol AsyncSequence {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   associatedtype Failure = any Error where Self.Failure == Self.AsyncIterator.Failure}
  |                  `- note: 'Failure' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncMulticastSequence.swift:53:33: error: 'Failure' is only available in macOS 15.0 or newer
  6 | //
  7 |
  8 | public extension AsyncSequence {
    |        `- note: add @available attribute to enclosing extension
  9 |   /// Use multicast  when you have multiple client iterations, but you want the base async sequence
 10 |   /// to only produce a single `AsyncIterator`.
    :
 50 |   ///
 51 |   /// - Parameter subject: An `AsyncSubject` to deliver elements to downstream client loops.
 52 |   func multicast<S: AsyncSubject>(_ subject: S) -> AsyncMulticastSequence<Self, S>
    |        `- note: add @available attribute to enclosing instance method
 53 |   where S.Element == Element, S.Failure == Error {
    |                                 `- error: 'Failure' is only available in macOS 15.0 or newer
 54 |     AsyncMulticastSequence(self, subject: subject)
 55 |   }
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncMulticastSequence.swift:59:48: error: 'Failure' is only available in macOS 15.0 or newer
 56 | }
 57 |
 58 | public final class AsyncMulticastSequence<Base: AsyncSequence, Subject: AsyncSubject>: AsyncSequence, Sendable
    |                    `- note: add @available attribute to enclosing generic class
 59 | where Base.Element == Subject.Element, Subject.Failure == Error, Base.AsyncIterator: Sendable {
    |                                                `- error: 'Failure' is only available in macOS 15.0 or newer
 60 |   public typealias Element = Base.Element
 61 |   public typealias AsyncIterator = Iterator
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncMulticastSequence.swift:109:50: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
107 |   func next() async {
108 |     await Task {
109 |       let (canAccessBase, iterator) = self.state.withCriticalRegion { state -> (Bool, Base.AsyncIterator?) in
    |                                                  `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
110 |         switch state {
111 |           case .available(let iterator):
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncMulticastSequence.swift:107:8: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
105 |   }
106 |
107 |   func next() async {
    |        `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
108 |     await Task {
109 |       let (canAccessBase, iterator) = self.state.withCriticalRegion { state -> (Bool, Base.AsyncIterator?) in
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncPrependSequence.swift:28:18: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
26 |   /// - Parameter element: The element to prepend.
27 |   /// - Returns: The async sequence prepended with the element.
28 |   func prepend(_ element: @Sendable @autoclosure @escaping () -> Element) -> AsyncPrependSequence<Self> {
   |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
29 |     AsyncPrependSequence(self, prependElement: element())
30 |   }
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncPrependSequence.swift:51:28: warning: cannot convert '@Sendable () -> Base.Element' to '() async throws -> Base.Element' because crossing of an isolation boundary requires parameter and result types to conform to 'Sendable' protocol; this will be an error in a future Swift language mode
49 |     Iterator(
50 |       base: self.base.makeAsyncIterator(),
51 |       prependElement: self.prependElement
   |                            |- warning: cannot convert '@Sendable () -> Base.Element' to '() async throws -> Base.Element' because crossing of an isolation boundary requires parameter and result types to conform to 'Sendable' protocol; this will be an error in a future Swift language mode
   |                            `- note: type 'Base.Element' does not conform to 'Sendable' protocol
52 |     )
53 |   }
[373/384] Compiling AsyncExtensions AsyncScanSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncSubjects/AsyncSubject.swift:10:18: warning: redeclaration of associated type 'Failure' from protocol 'AsyncSequence' is better expressed as a 'where' clause on the protocol
 8 | #if swift(>=5.7)
 9 | public protocol AsyncSubject<Element, Failure>: AnyObject, AsyncSequence, Sendable where AsyncIterator: AsyncSubjectIterator {
10 |   associatedtype Failure: Error
   |                  `- warning: redeclaration of associated type 'Failure' from protocol 'AsyncSequence' is better expressed as a 'where' clause on the protocol
11 |
12 |   func send(_ element: Element)
_Concurrency.AsyncSequence.Failure:3:18: note: 'Failure' declared here
1 | protocol AsyncSequence {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   associatedtype Failure = any Error where Self.Failure == Self.AsyncIterator.Failure}
  |                  `- note: 'Failure' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncMulticastSequence.swift:53:33: error: 'Failure' is only available in macOS 15.0 or newer
  6 | //
  7 |
  8 | public extension AsyncSequence {
    |        `- note: add @available attribute to enclosing extension
  9 |   /// Use multicast  when you have multiple client iterations, but you want the base async sequence
 10 |   /// to only produce a single `AsyncIterator`.
    :
 50 |   ///
 51 |   /// - Parameter subject: An `AsyncSubject` to deliver elements to downstream client loops.
 52 |   func multicast<S: AsyncSubject>(_ subject: S) -> AsyncMulticastSequence<Self, S>
    |        `- note: add @available attribute to enclosing instance method
 53 |   where S.Element == Element, S.Failure == Error {
    |                                 `- error: 'Failure' is only available in macOS 15.0 or newer
 54 |     AsyncMulticastSequence(self, subject: subject)
 55 |   }
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncMulticastSequence.swift:59:48: error: 'Failure' is only available in macOS 15.0 or newer
 56 | }
 57 |
 58 | public final class AsyncMulticastSequence<Base: AsyncSequence, Subject: AsyncSubject>: AsyncSequence, Sendable
    |                    `- note: add @available attribute to enclosing generic class
 59 | where Base.Element == Subject.Element, Subject.Failure == Error, Base.AsyncIterator: Sendable {
    |                                                `- error: 'Failure' is only available in macOS 15.0 or newer
 60 |   public typealias Element = Base.Element
 61 |   public typealias AsyncIterator = Iterator
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncMulticastSequence.swift:109:50: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
107 |   func next() async {
108 |     await Task {
109 |       let (canAccessBase, iterator) = self.state.withCriticalRegion { state -> (Bool, Base.AsyncIterator?) in
    |                                                  `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
110 |         switch state {
111 |           case .available(let iterator):
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncMulticastSequence.swift:107:8: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
105 |   }
106 |
107 |   func next() async {
    |        `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
108 |     await Task {
109 |       let (canAccessBase, iterator) = self.state.withCriticalRegion { state -> (Bool, Base.AsyncIterator?) in
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncPrependSequence.swift:28:18: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
26 |   /// - Parameter element: The element to prepend.
27 |   /// - Returns: The async sequence prepended with the element.
28 |   func prepend(_ element: @Sendable @autoclosure @escaping () -> Element) -> AsyncPrependSequence<Self> {
   |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
29 |     AsyncPrependSequence(self, prependElement: element())
30 |   }
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncPrependSequence.swift:51:28: warning: cannot convert '@Sendable () -> Base.Element' to '() async throws -> Base.Element' because crossing of an isolation boundary requires parameter and result types to conform to 'Sendable' protocol; this will be an error in a future Swift language mode
49 |     Iterator(
50 |       base: self.base.makeAsyncIterator(),
51 |       prependElement: self.prependElement
   |                            |- warning: cannot convert '@Sendable () -> Base.Element' to '() async throws -> Base.Element' because crossing of an isolation boundary requires parameter and result types to conform to 'Sendable' protocol; this will be an error in a future Swift language mode
   |                            `- note: type 'Base.Element' does not conform to 'Sendable' protocol
52 |     )
53 |   }
[374/384] Compiling AsyncExtensions AsyncSequence+Assign.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncSubjects/AsyncSubject.swift:10:18: warning: redeclaration of associated type 'Failure' from protocol 'AsyncSequence' is better expressed as a 'where' clause on the protocol
 8 | #if swift(>=5.7)
 9 | public protocol AsyncSubject<Element, Failure>: AnyObject, AsyncSequence, Sendable where AsyncIterator: AsyncSubjectIterator {
10 |   associatedtype Failure: Error
   |                  `- warning: redeclaration of associated type 'Failure' from protocol 'AsyncSequence' is better expressed as a 'where' clause on the protocol
11 |
12 |   func send(_ element: Element)
_Concurrency.AsyncSequence.Failure:3:18: note: 'Failure' declared here
1 | protocol AsyncSequence {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   associatedtype Failure = any Error where Self.Failure == Self.AsyncIterator.Failure}
  |                  `- note: 'Failure' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncMulticastSequence.swift:53:33: error: 'Failure' is only available in macOS 15.0 or newer
  6 | //
  7 |
  8 | public extension AsyncSequence {
    |        `- note: add @available attribute to enclosing extension
  9 |   /// Use multicast  when you have multiple client iterations, but you want the base async sequence
 10 |   /// to only produce a single `AsyncIterator`.
    :
 50 |   ///
 51 |   /// - Parameter subject: An `AsyncSubject` to deliver elements to downstream client loops.
 52 |   func multicast<S: AsyncSubject>(_ subject: S) -> AsyncMulticastSequence<Self, S>
    |        `- note: add @available attribute to enclosing instance method
 53 |   where S.Element == Element, S.Failure == Error {
    |                                 `- error: 'Failure' is only available in macOS 15.0 or newer
 54 |     AsyncMulticastSequence(self, subject: subject)
 55 |   }
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncMulticastSequence.swift:59:48: error: 'Failure' is only available in macOS 15.0 or newer
 56 | }
 57 |
 58 | public final class AsyncMulticastSequence<Base: AsyncSequence, Subject: AsyncSubject>: AsyncSequence, Sendable
    |                    `- note: add @available attribute to enclosing generic class
 59 | where Base.Element == Subject.Element, Subject.Failure == Error, Base.AsyncIterator: Sendable {
    |                                                `- error: 'Failure' is only available in macOS 15.0 or newer
 60 |   public typealias Element = Base.Element
 61 |   public typealias AsyncIterator = Iterator
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncMulticastSequence.swift:109:50: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
107 |   func next() async {
108 |     await Task {
109 |       let (canAccessBase, iterator) = self.state.withCriticalRegion { state -> (Bool, Base.AsyncIterator?) in
    |                                                  `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
110 |         switch state {
111 |           case .available(let iterator):
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncMulticastSequence.swift:107:8: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
105 |   }
106 |
107 |   func next() async {
    |        `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
108 |     await Task {
109 |       let (canAccessBase, iterator) = self.state.withCriticalRegion { state -> (Bool, Base.AsyncIterator?) in
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncPrependSequence.swift:28:18: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
26 |   /// - Parameter element: The element to prepend.
27 |   /// - Returns: The async sequence prepended with the element.
28 |   func prepend(_ element: @Sendable @autoclosure @escaping () -> Element) -> AsyncPrependSequence<Self> {
   |                  `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
29 |     AsyncPrependSequence(self, prependElement: element())
30 |   }
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncPrependSequence.swift:51:28: warning: cannot convert '@Sendable () -> Base.Element' to '() async throws -> Base.Element' because crossing of an isolation boundary requires parameter and result types to conform to 'Sendable' protocol; this will be an error in a future Swift language mode
49 |     Iterator(
50 |       base: self.base.makeAsyncIterator(),
51 |       prependElement: self.prependElement
   |                            |- warning: cannot convert '@Sendable () -> Base.Element' to '() async throws -> Base.Element' because crossing of an isolation boundary requires parameter and result types to conform to 'Sendable' protocol; this will be an error in a future Swift language mode
   |                            `- note: type 'Base.Element' does not conform to 'Sendable' protocol
52 |     )
53 |   }
[375/384] Compiling AsyncExtensions AsyncSwitchToLatestSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncSwitchToLatestSequence.swift:140:34: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 |       self.baseTask = Task { [base, state] in
139 |         do {
140 |           for try await child in base {
    |                                  `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 |             let childIterator = child.makeAsyncIterator()
142 |             let decision = state.withCriticalRegion { state -> BaseDecision in
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncSwitchToLatestSequence.swift:140:11: warning: capture of non-sendable type 'Base.Element.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 |       self.baseTask = Task { [base, state] in
139 |         do {
140 |           for try await child in base {
    |           `- warning: capture of non-sendable type 'Base.Element.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 |             let childIterator = child.makeAsyncIterator()
142 |             let decision = state.withCriticalRegion { state -> BaseDecision in
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncSwitchToLatestSequence.swift:224:24: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
222 |       self.startBase()
223 |
224 |       return try await withTaskCancellationHandler { [baseTask, state] in
    |                        |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |                        `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
225 |         baseTask?.cancel()
226 |         state.withCriticalRegion {
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Regulator.swift:50:11: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
 48 |
 49 |   func iterate() async {
 50 |     await withTaskCancellationHandler {
    |           |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |           `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
 51 |       self.unsuspendAndExitOnCancel()
 52 |     } operation: {
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Regulator.swift:51:7: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
 49 |   func iterate() async {
 50 |     await withTaskCancellationHandler {
 51 |       self.unsuspendAndExitOnCancel()
    |       `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
 52 |     } operation: {
 53 |       var mutableBase = base.makeAsyncIterator()
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Regulator.swift:49:8: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
 47 |   }
 48 |
 49 |   func iterate() async {
    |        `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
 50 |     await withTaskCancellationHandler {
 51 |       self.unsuspendAndExitOnCancel()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[376/384] Compiling AsyncExtensions ManagedCriticalState.swift
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncSwitchToLatestSequence.swift:140:34: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 |       self.baseTask = Task { [base, state] in
139 |         do {
140 |           for try await child in base {
    |                                  `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 |             let childIterator = child.makeAsyncIterator()
142 |             let decision = state.withCriticalRegion { state -> BaseDecision in
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncSwitchToLatestSequence.swift:140:11: warning: capture of non-sendable type 'Base.Element.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 |       self.baseTask = Task { [base, state] in
139 |         do {
140 |           for try await child in base {
    |           `- warning: capture of non-sendable type 'Base.Element.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 |             let childIterator = child.makeAsyncIterator()
142 |             let decision = state.withCriticalRegion { state -> BaseDecision in
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncSwitchToLatestSequence.swift:224:24: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
222 |       self.startBase()
223 |
224 |       return try await withTaskCancellationHandler { [baseTask, state] in
    |                        |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |                        `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
225 |         baseTask?.cancel()
226 |         state.withCriticalRegion {
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Regulator.swift:50:11: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
 48 |
 49 |   func iterate() async {
 50 |     await withTaskCancellationHandler {
    |           |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |           `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
 51 |       self.unsuspendAndExitOnCancel()
 52 |     } operation: {
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Regulator.swift:51:7: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
 49 |   func iterate() async {
 50 |     await withTaskCancellationHandler {
 51 |       self.unsuspendAndExitOnCancel()
    |       `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
 52 |     } operation: {
 53 |       var mutableBase = base.makeAsyncIterator()
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Regulator.swift:49:8: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
 47 |   }
 48 |
 49 |   func iterate() async {
    |        `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
 50 |     await withTaskCancellationHandler {
 51 |       self.unsuspendAndExitOnCancel()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[377/384] Compiling AsyncExtensions Regulator.swift
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncSwitchToLatestSequence.swift:140:34: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 |       self.baseTask = Task { [base, state] in
139 |         do {
140 |           for try await child in base {
    |                                  `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 |             let childIterator = child.makeAsyncIterator()
142 |             let decision = state.withCriticalRegion { state -> BaseDecision in
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncSwitchToLatestSequence.swift:140:11: warning: capture of non-sendable type 'Base.Element.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 |       self.baseTask = Task { [base, state] in
139 |         do {
140 |           for try await child in base {
    |           `- warning: capture of non-sendable type 'Base.Element.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 |             let childIterator = child.makeAsyncIterator()
142 |             let decision = state.withCriticalRegion { state -> BaseDecision in
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncSwitchToLatestSequence.swift:224:24: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
222 |       self.startBase()
223 |
224 |       return try await withTaskCancellationHandler { [baseTask, state] in
    |                        |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |                        `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
225 |         baseTask?.cancel()
226 |         state.withCriticalRegion {
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Regulator.swift:50:11: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
 48 |
 49 |   func iterate() async {
 50 |     await withTaskCancellationHandler {
    |           |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |           `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
 51 |       self.unsuspendAndExitOnCancel()
 52 |     } operation: {
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Regulator.swift:51:7: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
 49 |   func iterate() async {
 50 |     await withTaskCancellationHandler {
 51 |       self.unsuspendAndExitOnCancel()
    |       `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
 52 |     } operation: {
 53 |       var mutableBase = base.makeAsyncIterator()
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Regulator.swift:49:8: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
 47 |   }
 48 |
 49 |   func iterate() async {
    |        `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
 50 |     await withTaskCancellationHandler {
 51 |       self.unsuspendAndExitOnCancel()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[378/384] Compiling AsyncExtensions Result+ErrorMechanism.swift
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncSwitchToLatestSequence.swift:140:34: warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 |       self.baseTask = Task { [base, state] in
139 |         do {
140 |           for try await child in base {
    |                                  `- warning: capture of non-sendable type 'Base.AsyncIterator.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 |             let childIterator = child.makeAsyncIterator()
142 |             let decision = state.withCriticalRegion { state -> BaseDecision in
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncSwitchToLatestSequence.swift:140:11: warning: capture of non-sendable type 'Base.Element.Type' in an isolated closure; this is an error in the Swift 6 language mode
138 |       self.baseTask = Task { [base, state] in
139 |         do {
140 |           for try await child in base {
    |           `- warning: capture of non-sendable type 'Base.Element.Type' in an isolated closure; this is an error in the Swift 6 language mode
141 |             let childIterator = child.makeAsyncIterator()
142 |             let decision = state.withCriticalRegion { state -> BaseDecision in
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncSwitchToLatestSequence.swift:224:24: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
222 |       self.startBase()
223 |
224 |       return try await withTaskCancellationHandler { [baseTask, state] in
    |                        |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |                        `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
225 |         baseTask?.cancel()
226 |         state.withCriticalRegion {
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Regulator.swift:50:11: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
 48 |
 49 |   func iterate() async {
 50 |     await withTaskCancellationHandler {
    |           |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
    |           `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
 51 |       self.unsuspendAndExitOnCancel()
 52 |     } operation: {
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Regulator.swift:51:7: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
 49 |   func iterate() async {
 50 |     await withTaskCancellationHandler {
 51 |       self.unsuspendAndExitOnCancel()
    |       `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
 52 |     } operation: {
 53 |       var mutableBase = base.makeAsyncIterator()
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Regulator.swift:49:8: warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
 47 |   }
 48 |
 49 |   func iterate() async {
    |        `- warning: capture of non-sendable type 'Base.Type' in an isolated closure; this is an error in the Swift 6 language mode
 50 |     await withTaskCancellationHandler {
 51 |       self.unsuspendAndExitOnCancel()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
error: emit-module command failed with exit code 1 (use -v to see invocation)
[379/384] Compiling AsyncExtensions AsyncStream+Pipe.swift
/Users/admin/builder/spi-builder-workspace/Sources/Creators/AsyncTimerSequence.swift:81:13: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
79 |
80 |     public mutating func next() async -> Element? {
81 |       await withTaskCancellationHandler { [task] in
   |             |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
   |             `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
82 |         task.cancel()
83 |       } operation: {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[380/384] Compiling AsyncExtensions AsyncThrowingJustSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Creators/AsyncTimerSequence.swift:81:13: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
79 |
80 |     public mutating func next() async -> Element? {
81 |       await withTaskCancellationHandler { [task] in
   |             |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
   |             `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
82 |         task.cancel()
83 |       } operation: {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[381/384] Compiling AsyncExtensions AsyncTimerSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Creators/AsyncTimerSequence.swift:81:13: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
79 |
80 |     public mutating func next() async -> Element? {
81 |       await withTaskCancellationHandler { [task] in
   |             |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
   |             `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
82 |         task.cancel()
83 |       } operation: {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[382/384] Compiling AsyncExtensions AsyncHandleEventsSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Creators/AsyncTimerSequence.swift:81:13: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
79 |
80 |     public mutating func next() async -> Element? {
81 |       await withTaskCancellationHandler { [task] in
   |             |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
   |             `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
82 |         task.cancel()
83 |       } operation: {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[383/384] Compiling AsyncExtensions AsyncMapToResultSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Creators/AsyncTimerSequence.swift:81:13: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
79 |
80 |     public mutating func next() async -> Element? {
81 |       await withTaskCancellationHandler { [task] in
   |             |- warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)' [#DeprecatedDeclaration]
   |             `- note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
82 |         task.cancel()
83 |       } operation: {
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[384/384] Emitting module AsyncExtensions
/Users/admin/builder/spi-builder-workspace/Sources/AsyncSubjects/AsyncSubject.swift:10:18: warning: redeclaration of associated type 'Failure' from protocol 'AsyncSequence' is better expressed as a 'where' clause on the protocol
 8 | #if swift(>=5.7)
 9 | public protocol AsyncSubject<Element, Failure>: AnyObject, AsyncSequence, Sendable where AsyncIterator: AsyncSubjectIterator {
10 |   associatedtype Failure: Error
   |                  `- warning: redeclaration of associated type 'Failure' from protocol 'AsyncSequence' is better expressed as a 'where' clause on the protocol
11 |
12 |   func send(_ element: Element)
_Concurrency.AsyncSequence.Failure:3:18: note: 'Failure' declared here
1 | protocol AsyncSequence {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   associatedtype Failure = any Error where Self.Failure == Self.AsyncIterator.Failure}
  |                  `- note: 'Failure' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncSubjects/AsyncThrowingCurrentValueSubject.swift:37:20: error: type 'AsyncThrowingCurrentValueSubject<Element, Failure>' does not conform to protocol 'AsyncSequence'
 35 | ///
 36 | /// ```
 37 | public final class AsyncThrowingCurrentValueSubject<Element, Failure: Error>: AsyncSubject where Element: Sendable {
    |                    `- error: type 'AsyncThrowingCurrentValueSubject<Element, Failure>' does not conform to protocol 'AsyncSequence'
 38 |   public typealias Element = Element
 39 |   public typealias Failure = Failure
/Users/admin/builder/spi-builder-workspace/Sources/AsyncSubjects/AsyncThrowingCurrentValueSubject.swift:37:20: error: 'AsyncSequence' requires the types 'AsyncThrowingCurrentValueSubject<Element, Failure>.Failure' (aka 'Failure') and 'any Error' be equivalent
 35 | ///
 36 | /// ```
 37 | public final class AsyncThrowingCurrentValueSubject<Element, Failure: Error>: AsyncSubject where Element: Sendable {
    |                    |- error: 'AsyncSequence' requires the types 'AsyncThrowingCurrentValueSubject<Element, Failure>.Failure' (aka 'Failure') and 'any Error' be equivalent
    |                    `- note: requirement specified as 'Self.Failure' == 'Self.AsyncIterator.Failure' [with Self = AsyncThrowingCurrentValueSubject<Element, Failure>]
 38 |   public typealias Element = Element
 39 |   public typealias Failure = Failure
/Users/admin/builder/spi-builder-workspace/Sources/AsyncSubjects/AsyncThrowingPassthroughSubject.swift:34:20: error: type 'AsyncThrowingPassthroughSubject<Element, Failure>' does not conform to protocol 'AsyncSequence'
 32 | /// ```
 33 | ///
 34 | public final class AsyncThrowingPassthroughSubject<Element, Failure: Error>: AsyncSubject where Element: Sendable {
    |                    `- error: type 'AsyncThrowingPassthroughSubject<Element, Failure>' does not conform to protocol 'AsyncSequence'
 35 |   public typealias Element = Element
 36 |   public typealias Failure = Failure
/Users/admin/builder/spi-builder-workspace/Sources/AsyncSubjects/AsyncThrowingPassthroughSubject.swift:34:20: error: 'AsyncSequence' requires the types 'AsyncThrowingPassthroughSubject<Element, Failure>.Failure' (aka 'Failure') and 'any Error' be equivalent
 32 | /// ```
 33 | ///
 34 | public final class AsyncThrowingPassthroughSubject<Element, Failure: Error>: AsyncSubject where Element: Sendable {
    |                    |- error: 'AsyncSequence' requires the types 'AsyncThrowingPassthroughSubject<Element, Failure>.Failure' (aka 'Failure') and 'any Error' be equivalent
    |                    `- note: requirement specified as 'Self.Failure' == 'Self.AsyncIterator.Failure' [with Self = AsyncThrowingPassthroughSubject<Element, Failure>]
 35 |   public typealias Element = Element
 36 |   public typealias Failure = Failure
/Users/admin/builder/spi-builder-workspace/Sources/AsyncSubjects/AsyncThrowingReplaySubject.swift:24:20: error: type 'AsyncThrowingReplaySubject<Element, Failure>' does not conform to protocol 'AsyncSequence'
 22 | /// }
 23 | /// ```
 24 | public final class AsyncThrowingReplaySubject<Element, Failure: Error>: AsyncSubject where Element: Sendable {
    |                    `- error: type 'AsyncThrowingReplaySubject<Element, Failure>' does not conform to protocol 'AsyncSequence'
 25 |   public typealias Element = Element
 26 |   public typealias Failure = Failure
/Users/admin/builder/spi-builder-workspace/Sources/AsyncSubjects/AsyncThrowingReplaySubject.swift:24:20: error: 'AsyncSequence' requires the types 'AsyncThrowingReplaySubject<Element, Failure>.Failure' (aka 'Failure') and 'any Error' be equivalent
 22 | /// }
 23 | /// ```
 24 | public final class AsyncThrowingReplaySubject<Element, Failure: Error>: AsyncSubject where Element: Sendable {
    |                    |- error: 'AsyncSequence' requires the types 'AsyncThrowingReplaySubject<Element, Failure>.Failure' (aka 'Failure') and 'any Error' be equivalent
    |                    `- note: requirement specified as 'Self.Failure' == 'Self.AsyncIterator.Failure' [with Self = AsyncThrowingReplaySubject<Element, Failure>]
 25 |   public typealias Element = Element
 26 |   public typealias Failure = Failure
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncMulticastSequence.swift:53:33: error: 'Failure' is only available in macOS 15.0 or newer
  6 | //
  7 |
  8 | public extension AsyncSequence {
    |        `- note: add @available attribute to enclosing extension
  9 |   /// Use multicast  when you have multiple client iterations, but you want the base async sequence
 10 |   /// to only produce a single `AsyncIterator`.
    :
 50 |   ///
 51 |   /// - Parameter subject: An `AsyncSubject` to deliver elements to downstream client loops.
 52 |   func multicast<S: AsyncSubject>(_ subject: S) -> AsyncMulticastSequence<Self, S>
    |        `- note: add @available attribute to enclosing instance method
 53 |   where S.Element == Element, S.Failure == Error {
    |                                 `- error: 'Failure' is only available in macOS 15.0 or newer
 54 |     AsyncMulticastSequence(self, subject: subject)
 55 |   }
/Users/admin/builder/spi-builder-workspace/Sources/Operators/AsyncMulticastSequence.swift:59:48: error: 'Failure' is only available in macOS 15.0 or newer
 56 | }
 57 |
 58 | public final class AsyncMulticastSequence<Base: AsyncSequence, Subject: AsyncSubject>: AsyncSequence, Sendable
    |                    `- note: add @available attribute to enclosing generic class
 59 | where Base.Element == Subject.Element, Subject.Failure == Error, Base.AsyncIterator: Sendable {
    |                                                `- error: 'Failure' is only available in macOS 15.0 or newer
 60 |   public typealias Element = Base.Element
 61 |   public typealias AsyncIterator = Iterator
Fetching https://github.com/apple/swift-collections.git
[1/16640] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (1.61s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.0 (2.15s)
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.2.0
BUILD FAILURE 6.2 macosSpm