The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Afluent, reference main (f90d0f), with Swift 6.3 for Wasm on 23 Apr 2026 09:04:58 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1

Build Log

33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:32:83: error: cannot infer contextual base in reference to member 'utility'
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
   |                                                                                   `- error: cannot infer contextual base in reference to member 'utility'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:33:70: error: cannot infer contextual base in reference to member 'global'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
   |                                                                      `- error: cannot infer contextual base in reference to member 'global'
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:33:83: error: cannot infer contextual base in reference to member 'default'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
   |                                                                                   `- error: cannot infer contextual base in reference to member 'default'
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:35:21: error: cannot infer contextual base in reference to member 'global'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
   |                     `- error: cannot infer contextual base in reference to member 'global'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:35:34: error: cannot infer contextual base in reference to member 'userInitiated'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
   |                                  `- error: cannot infer contextual base in reference to member 'userInitiated'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:37:21: error: cannot infer contextual base in reference to member 'global'
35 |             queue: .global(qos: .userInitiated))
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
   |                     `- error: cannot infer contextual base in reference to member 'global'
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
39 |     }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:37:34: error: cannot infer contextual base in reference to member 'userInteractive'
35 |             queue: .global(qos: .userInitiated))
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
   |                                  `- error: cannot infer contextual base in reference to member 'userInteractive'
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
39 |     }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:38:74: error: cannot infer contextual base in reference to member 'global'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
   |                                                                          `- error: cannot infer contextual base in reference to member 'global'
39 |     }
40 |
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:38:87: error: cannot infer contextual base in reference to member 'unspecified'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
   |                                                                                       `- error: cannot infer contextual base in reference to member 'unspecified'
39 |     }
40 |
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:47:45: error: cannot find type 'DispatchQoS' in scope
45 |         }
46 |
47 |         public static func globalQueue(qos: DispatchQoS.QoSClass = .default) -> QueueExecutor {
   |                                             `- error: cannot find type 'DispatchQoS' in scope
48 |             switch qos {
49 |                 case .background:
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:68:18: error: cannot find type 'DispatchQoS' in scope
66 |         public static func queue(
67 |             label: String,
68 |             qos: DispatchQoS = .unspecified,
   |                  `- error: cannot find type 'DispatchQoS' in scope
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:69:25: error: cannot find type 'DispatchQueue' in scope
67 |             label: String,
68 |             qos: DispatchQoS = .unspecified,
69 |             attributes: DispatchQueue.Attributes = [],
   |                         `- error: cannot find type 'DispatchQueue' in scope
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
71 |             target: DispatchQueue? = nil
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:70:35: error: cannot find type 'DispatchQueue' in scope
68 |             qos: DispatchQoS = .unspecified,
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
   |                                   `- error: cannot find type 'DispatchQueue' in scope
71 |             target: DispatchQueue? = nil
72 |         ) -> QueueExecutor {
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:71:21: error: cannot find type 'DispatchQueue' in scope
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
71 |             target: DispatchQueue? = nil
   |                     `- error: cannot find type 'DispatchQueue' in scope
72 |         ) -> QueueExecutor {
73 |             queue(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:79:43: error: cannot find type 'DispatchQueue' in scope
77 |         }
78 |
79 |         public static func queue(_ queue: DispatchQueue) -> QueueExecutor {
   |                                           `- error: cannot find type 'DispatchQueue' in scope
80 |             QueueExecutor(queue: queue)
81 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:62:42: error: cannot infer contextual base in reference to member 'global'
60 |                     return .globalUnspecified
61 |                 @unknown default:
62 |                     return .init(queue: .global(qos: qos))
   |                                          `- error: cannot infer contextual base in reference to member 'global'
63 |             }
64 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:74:17: error: cannot find 'DispatchQueue' in scope
72 |         ) -> QueueExecutor {
73 |             queue(
74 |                 DispatchQueue(
   |                 `- error: cannot find 'DispatchQueue' in scope
75 |                     label: label, qos: qos, attributes: attributes,
76 |                     autoreleaseFrequency: autoreleaseFrequency, target: target))
/host/spi-builder-workspace/Sources/Afluent/Additions/URLSessionAdditions.swift:14:5: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
12 |     #endif
13 |
14 |     extension URLSession {
   |     `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
15 |         /// Returns a deferred data task that wraps a URL session data task for a given URL.
16 |         public func deferredDataTask(from url: URL) -> some AsynchronousUnitOfWork<
/host/spi-builder-workspace/Sources/Afluent/Additions/URLSessionAdditions.swift:25:54: error: cannot find type 'URLRequest' in scope
23 |
24 |         /// Returns a deferred data task that wraps a URL session data task for a given URL.
25 |         public func deferredDataTask(for urlRequest: URLRequest) -> some AsynchronousUnitOfWork<
   |                                                      `- error: cannot find type 'URLRequest' in scope
26 |             (data: Data, response: URLResponse)
27 |         > {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[34/113] Compiling Afluent URLSessionAdditions.swift
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:13:20: error: cannot find type 'DispatchQueue' in scope
11 |     @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
12 |     public final class QueueExecutor: TaskExecutor, Sendable, CustomStringConvertible {
13 |         let queue: DispatchQueue
   |                    `- error: cannot find type 'DispatchQueue' in scope
14 |
15 |         init(queue: DispatchQueue) {
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:15:21: error: cannot find type 'DispatchQueue' in scope
13 |         let queue: DispatchQueue
14 |
15 |         init(queue: DispatchQueue) {
   |                     `- error: cannot find type 'DispatchQueue' in scope
16 |             self.queue = queue
17 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:30:61: error: cannot infer contextual base in reference to member 'main'
28 |         }
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
   |                                                             `- error: cannot infer contextual base in reference to member 'main'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:31:73: error: cannot infer contextual base in reference to member 'global'
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
   |                                                                         `- error: cannot infer contextual base in reference to member 'global'
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:31:86: error: cannot infer contextual base in reference to member 'background'
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
   |                                                                                      `- error: cannot infer contextual base in reference to member 'background'
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:32:70: error: cannot infer contextual base in reference to member 'global'
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
   |                                                                      `- error: cannot infer contextual base in reference to member 'global'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:32:83: error: cannot infer contextual base in reference to member 'utility'
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
   |                                                                                   `- error: cannot infer contextual base in reference to member 'utility'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:33:70: error: cannot infer contextual base in reference to member 'global'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
   |                                                                      `- error: cannot infer contextual base in reference to member 'global'
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:33:83: error: cannot infer contextual base in reference to member 'default'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
   |                                                                                   `- error: cannot infer contextual base in reference to member 'default'
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:35:21: error: cannot infer contextual base in reference to member 'global'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
   |                     `- error: cannot infer contextual base in reference to member 'global'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:35:34: error: cannot infer contextual base in reference to member 'userInitiated'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
   |                                  `- error: cannot infer contextual base in reference to member 'userInitiated'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:37:21: error: cannot infer contextual base in reference to member 'global'
35 |             queue: .global(qos: .userInitiated))
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
   |                     `- error: cannot infer contextual base in reference to member 'global'
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
39 |     }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:37:34: error: cannot infer contextual base in reference to member 'userInteractive'
35 |             queue: .global(qos: .userInitiated))
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
   |                                  `- error: cannot infer contextual base in reference to member 'userInteractive'
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
39 |     }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:38:74: error: cannot infer contextual base in reference to member 'global'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
   |                                                                          `- error: cannot infer contextual base in reference to member 'global'
39 |     }
40 |
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:38:87: error: cannot infer contextual base in reference to member 'unspecified'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
   |                                                                                       `- error: cannot infer contextual base in reference to member 'unspecified'
39 |     }
40 |
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:47:45: error: cannot find type 'DispatchQoS' in scope
45 |         }
46 |
47 |         public static func globalQueue(qos: DispatchQoS.QoSClass = .default) -> QueueExecutor {
   |                                             `- error: cannot find type 'DispatchQoS' in scope
48 |             switch qos {
49 |                 case .background:
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:68:18: error: cannot find type 'DispatchQoS' in scope
66 |         public static func queue(
67 |             label: String,
68 |             qos: DispatchQoS = .unspecified,
   |                  `- error: cannot find type 'DispatchQoS' in scope
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:69:25: error: cannot find type 'DispatchQueue' in scope
67 |             label: String,
68 |             qos: DispatchQoS = .unspecified,
69 |             attributes: DispatchQueue.Attributes = [],
   |                         `- error: cannot find type 'DispatchQueue' in scope
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
71 |             target: DispatchQueue? = nil
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:70:35: error: cannot find type 'DispatchQueue' in scope
68 |             qos: DispatchQoS = .unspecified,
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
   |                                   `- error: cannot find type 'DispatchQueue' in scope
71 |             target: DispatchQueue? = nil
72 |         ) -> QueueExecutor {
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:71:21: error: cannot find type 'DispatchQueue' in scope
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
71 |             target: DispatchQueue? = nil
   |                     `- error: cannot find type 'DispatchQueue' in scope
72 |         ) -> QueueExecutor {
73 |             queue(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:79:43: error: cannot find type 'DispatchQueue' in scope
77 |         }
78 |
79 |         public static func queue(_ queue: DispatchQueue) -> QueueExecutor {
   |                                           `- error: cannot find type 'DispatchQueue' in scope
80 |             QueueExecutor(queue: queue)
81 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:62:42: error: cannot infer contextual base in reference to member 'global'
60 |                     return .globalUnspecified
61 |                 @unknown default:
62 |                     return .init(queue: .global(qos: qos))
   |                                          `- error: cannot infer contextual base in reference to member 'global'
63 |             }
64 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:74:17: error: cannot find 'DispatchQueue' in scope
72 |         ) -> QueueExecutor {
73 |             queue(
74 |                 DispatchQueue(
   |                 `- error: cannot find 'DispatchQueue' in scope
75 |                     label: label, qos: qos, attributes: attributes,
76 |                     autoreleaseFrequency: autoreleaseFrequency, target: target))
/host/spi-builder-workspace/Sources/Afluent/Additions/URLSessionAdditions.swift:14:5: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
12 |     #endif
13 |
14 |     extension URLSession {
   |     `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
15 |         /// Returns a deferred data task that wraps a URL session data task for a given URL.
16 |         public func deferredDataTask(from url: URL) -> some AsynchronousUnitOfWork<
/host/spi-builder-workspace/Sources/Afluent/Additions/URLSessionAdditions.swift:25:54: error: cannot find type 'URLRequest' in scope
23 |
24 |         /// Returns a deferred data task that wraps a URL session data task for a given URL.
25 |         public func deferredDataTask(for urlRequest: URLRequest) -> some AsynchronousUnitOfWork<
   |                                                      `- error: cannot find type 'URLRequest' in scope
26 |             (data: Data, response: URLResponse)
27 |         > {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[35/113] Compiling Afluent AsyncSequenceCache.swift
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:13:20: error: cannot find type 'DispatchQueue' in scope
11 |     @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
12 |     public final class QueueExecutor: TaskExecutor, Sendable, CustomStringConvertible {
13 |         let queue: DispatchQueue
   |                    `- error: cannot find type 'DispatchQueue' in scope
14 |
15 |         init(queue: DispatchQueue) {
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:15:21: error: cannot find type 'DispatchQueue' in scope
13 |         let queue: DispatchQueue
14 |
15 |         init(queue: DispatchQueue) {
   |                     `- error: cannot find type 'DispatchQueue' in scope
16 |             self.queue = queue
17 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:30:61: error: cannot infer contextual base in reference to member 'main'
28 |         }
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
   |                                                             `- error: cannot infer contextual base in reference to member 'main'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:31:73: error: cannot infer contextual base in reference to member 'global'
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
   |                                                                         `- error: cannot infer contextual base in reference to member 'global'
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:31:86: error: cannot infer contextual base in reference to member 'background'
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
   |                                                                                      `- error: cannot infer contextual base in reference to member 'background'
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:32:70: error: cannot infer contextual base in reference to member 'global'
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
   |                                                                      `- error: cannot infer contextual base in reference to member 'global'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:32:83: error: cannot infer contextual base in reference to member 'utility'
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
   |                                                                                   `- error: cannot infer contextual base in reference to member 'utility'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:33:70: error: cannot infer contextual base in reference to member 'global'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
   |                                                                      `- error: cannot infer contextual base in reference to member 'global'
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:33:83: error: cannot infer contextual base in reference to member 'default'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
   |                                                                                   `- error: cannot infer contextual base in reference to member 'default'
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:35:21: error: cannot infer contextual base in reference to member 'global'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
   |                     `- error: cannot infer contextual base in reference to member 'global'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:35:34: error: cannot infer contextual base in reference to member 'userInitiated'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
   |                                  `- error: cannot infer contextual base in reference to member 'userInitiated'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:37:21: error: cannot infer contextual base in reference to member 'global'
35 |             queue: .global(qos: .userInitiated))
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
   |                     `- error: cannot infer contextual base in reference to member 'global'
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
39 |     }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:37:34: error: cannot infer contextual base in reference to member 'userInteractive'
35 |             queue: .global(qos: .userInitiated))
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
   |                                  `- error: cannot infer contextual base in reference to member 'userInteractive'
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
39 |     }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:38:74: error: cannot infer contextual base in reference to member 'global'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
   |                                                                          `- error: cannot infer contextual base in reference to member 'global'
39 |     }
40 |
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:38:87: error: cannot infer contextual base in reference to member 'unspecified'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
   |                                                                                       `- error: cannot infer contextual base in reference to member 'unspecified'
39 |     }
40 |
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:47:45: error: cannot find type 'DispatchQoS' in scope
45 |         }
46 |
47 |         public static func globalQueue(qos: DispatchQoS.QoSClass = .default) -> QueueExecutor {
   |                                             `- error: cannot find type 'DispatchQoS' in scope
48 |             switch qos {
49 |                 case .background:
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:68:18: error: cannot find type 'DispatchQoS' in scope
66 |         public static func queue(
67 |             label: String,
68 |             qos: DispatchQoS = .unspecified,
   |                  `- error: cannot find type 'DispatchQoS' in scope
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:69:25: error: cannot find type 'DispatchQueue' in scope
67 |             label: String,
68 |             qos: DispatchQoS = .unspecified,
69 |             attributes: DispatchQueue.Attributes = [],
   |                         `- error: cannot find type 'DispatchQueue' in scope
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
71 |             target: DispatchQueue? = nil
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:70:35: error: cannot find type 'DispatchQueue' in scope
68 |             qos: DispatchQoS = .unspecified,
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
   |                                   `- error: cannot find type 'DispatchQueue' in scope
71 |             target: DispatchQueue? = nil
72 |         ) -> QueueExecutor {
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:71:21: error: cannot find type 'DispatchQueue' in scope
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
71 |             target: DispatchQueue? = nil
   |                     `- error: cannot find type 'DispatchQueue' in scope
72 |         ) -> QueueExecutor {
73 |             queue(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:79:43: error: cannot find type 'DispatchQueue' in scope
77 |         }
78 |
79 |         public static func queue(_ queue: DispatchQueue) -> QueueExecutor {
   |                                           `- error: cannot find type 'DispatchQueue' in scope
80 |             QueueExecutor(queue: queue)
81 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:62:42: error: cannot infer contextual base in reference to member 'global'
60 |                     return .globalUnspecified
61 |                 @unknown default:
62 |                     return .init(queue: .global(qos: qos))
   |                                          `- error: cannot infer contextual base in reference to member 'global'
63 |             }
64 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:74:17: error: cannot find 'DispatchQueue' in scope
72 |         ) -> QueueExecutor {
73 |             queue(
74 |                 DispatchQueue(
   |                 `- error: cannot find 'DispatchQueue' in scope
75 |                     label: label, qos: qos, attributes: attributes,
76 |                     autoreleaseFrequency: autoreleaseFrequency, target: target))
/host/spi-builder-workspace/Sources/Afluent/Additions/URLSessionAdditions.swift:14:5: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
12 |     #endif
13 |
14 |     extension URLSession {
   |     `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
15 |         /// Returns a deferred data task that wraps a URL session data task for a given URL.
16 |         public func deferredDataTask(from url: URL) -> some AsynchronousUnitOfWork<
/host/spi-builder-workspace/Sources/Afluent/Additions/URLSessionAdditions.swift:25:54: error: cannot find type 'URLRequest' in scope
23 |
24 |         /// Returns a deferred data task that wraps a URL session data task for a given URL.
25 |         public func deferredDataTask(for urlRequest: URLRequest) -> some AsynchronousUnitOfWork<
   |                                                      `- error: cannot find type 'URLRequest' in scope
26 |             (data: Data, response: URLResponse)
27 |         > {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[36/113] Compiling Afluent AsynchronousUnitOfWorkCache.swift
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:13:20: error: cannot find type 'DispatchQueue' in scope
11 |     @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
12 |     public final class QueueExecutor: TaskExecutor, Sendable, CustomStringConvertible {
13 |         let queue: DispatchQueue
   |                    `- error: cannot find type 'DispatchQueue' in scope
14 |
15 |         init(queue: DispatchQueue) {
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:15:21: error: cannot find type 'DispatchQueue' in scope
13 |         let queue: DispatchQueue
14 |
15 |         init(queue: DispatchQueue) {
   |                     `- error: cannot find type 'DispatchQueue' in scope
16 |             self.queue = queue
17 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:30:61: error: cannot infer contextual base in reference to member 'main'
28 |         }
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
   |                                                             `- error: cannot infer contextual base in reference to member 'main'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:31:73: error: cannot infer contextual base in reference to member 'global'
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
   |                                                                         `- error: cannot infer contextual base in reference to member 'global'
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:31:86: error: cannot infer contextual base in reference to member 'background'
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
   |                                                                                      `- error: cannot infer contextual base in reference to member 'background'
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:32:70: error: cannot infer contextual base in reference to member 'global'
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
   |                                                                      `- error: cannot infer contextual base in reference to member 'global'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:32:83: error: cannot infer contextual base in reference to member 'utility'
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
   |                                                                                   `- error: cannot infer contextual base in reference to member 'utility'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:33:70: error: cannot infer contextual base in reference to member 'global'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
   |                                                                      `- error: cannot infer contextual base in reference to member 'global'
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:33:83: error: cannot infer contextual base in reference to member 'default'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
   |                                                                                   `- error: cannot infer contextual base in reference to member 'default'
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:35:21: error: cannot infer contextual base in reference to member 'global'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
   |                     `- error: cannot infer contextual base in reference to member 'global'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:35:34: error: cannot infer contextual base in reference to member 'userInitiated'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
   |                                  `- error: cannot infer contextual base in reference to member 'userInitiated'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:37:21: error: cannot infer contextual base in reference to member 'global'
35 |             queue: .global(qos: .userInitiated))
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
   |                     `- error: cannot infer contextual base in reference to member 'global'
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
39 |     }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:37:34: error: cannot infer contextual base in reference to member 'userInteractive'
35 |             queue: .global(qos: .userInitiated))
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
   |                                  `- error: cannot infer contextual base in reference to member 'userInteractive'
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
39 |     }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:38:74: error: cannot infer contextual base in reference to member 'global'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
   |                                                                          `- error: cannot infer contextual base in reference to member 'global'
39 |     }
40 |
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:38:87: error: cannot infer contextual base in reference to member 'unspecified'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
   |                                                                                       `- error: cannot infer contextual base in reference to member 'unspecified'
39 |     }
40 |
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:47:45: error: cannot find type 'DispatchQoS' in scope
45 |         }
46 |
47 |         public static func globalQueue(qos: DispatchQoS.QoSClass = .default) -> QueueExecutor {
   |                                             `- error: cannot find type 'DispatchQoS' in scope
48 |             switch qos {
49 |                 case .background:
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:68:18: error: cannot find type 'DispatchQoS' in scope
66 |         public static func queue(
67 |             label: String,
68 |             qos: DispatchQoS = .unspecified,
   |                  `- error: cannot find type 'DispatchQoS' in scope
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:69:25: error: cannot find type 'DispatchQueue' in scope
67 |             label: String,
68 |             qos: DispatchQoS = .unspecified,
69 |             attributes: DispatchQueue.Attributes = [],
   |                         `- error: cannot find type 'DispatchQueue' in scope
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
71 |             target: DispatchQueue? = nil
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:70:35: error: cannot find type 'DispatchQueue' in scope
68 |             qos: DispatchQoS = .unspecified,
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
   |                                   `- error: cannot find type 'DispatchQueue' in scope
71 |             target: DispatchQueue? = nil
72 |         ) -> QueueExecutor {
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:71:21: error: cannot find type 'DispatchQueue' in scope
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
71 |             target: DispatchQueue? = nil
   |                     `- error: cannot find type 'DispatchQueue' in scope
72 |         ) -> QueueExecutor {
73 |             queue(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:79:43: error: cannot find type 'DispatchQueue' in scope
77 |         }
78 |
79 |         public static func queue(_ queue: DispatchQueue) -> QueueExecutor {
   |                                           `- error: cannot find type 'DispatchQueue' in scope
80 |             QueueExecutor(queue: queue)
81 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:62:42: error: cannot infer contextual base in reference to member 'global'
60 |                     return .globalUnspecified
61 |                 @unknown default:
62 |                     return .init(queue: .global(qos: qos))
   |                                          `- error: cannot infer contextual base in reference to member 'global'
63 |             }
64 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:74:17: error: cannot find 'DispatchQueue' in scope
72 |         ) -> QueueExecutor {
73 |             queue(
74 |                 DispatchQueue(
   |                 `- error: cannot find 'DispatchQueue' in scope
75 |                     label: label, qos: qos, attributes: attributes,
76 |                     autoreleaseFrequency: autoreleaseFrequency, target: target))
/host/spi-builder-workspace/Sources/Afluent/Additions/URLSessionAdditions.swift:14:5: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
12 |     #endif
13 |
14 |     extension URLSession {
   |     `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
15 |         /// Returns a deferred data task that wraps a URL session data task for a given URL.
16 |         public func deferredDataTask(from url: URL) -> some AsynchronousUnitOfWork<
/host/spi-builder-workspace/Sources/Afluent/Additions/URLSessionAdditions.swift:25:54: error: cannot find type 'URLRequest' in scope
23 |
24 |         /// Returns a deferred data task that wraps a URL session data task for a given URL.
25 |         public func deferredDataTask(for urlRequest: URLRequest) -> some AsynchronousUnitOfWork<
   |                                                      `- error: cannot find type 'URLRequest' in scope
26 |             (data: Data, response: URLResponse)
27 |         > {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[37/113] Compiling Afluent CurrentValueSubject.swift
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:13:20: error: cannot find type 'DispatchQueue' in scope
11 |     @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
12 |     public final class QueueExecutor: TaskExecutor, Sendable, CustomStringConvertible {
13 |         let queue: DispatchQueue
   |                    `- error: cannot find type 'DispatchQueue' in scope
14 |
15 |         init(queue: DispatchQueue) {
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:15:21: error: cannot find type 'DispatchQueue' in scope
13 |         let queue: DispatchQueue
14 |
15 |         init(queue: DispatchQueue) {
   |                     `- error: cannot find type 'DispatchQueue' in scope
16 |             self.queue = queue
17 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:30:61: error: cannot infer contextual base in reference to member 'main'
28 |         }
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
   |                                                             `- error: cannot infer contextual base in reference to member 'main'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:31:73: error: cannot infer contextual base in reference to member 'global'
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
   |                                                                         `- error: cannot infer contextual base in reference to member 'global'
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:31:86: error: cannot infer contextual base in reference to member 'background'
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
   |                                                                                      `- error: cannot infer contextual base in reference to member 'background'
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:32:70: error: cannot infer contextual base in reference to member 'global'
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
   |                                                                      `- error: cannot infer contextual base in reference to member 'global'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:32:83: error: cannot infer contextual base in reference to member 'utility'
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
   |                                                                                   `- error: cannot infer contextual base in reference to member 'utility'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:33:70: error: cannot infer contextual base in reference to member 'global'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
   |                                                                      `- error: cannot infer contextual base in reference to member 'global'
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:33:83: error: cannot infer contextual base in reference to member 'default'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
   |                                                                                   `- error: cannot infer contextual base in reference to member 'default'
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:35:21: error: cannot infer contextual base in reference to member 'global'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
   |                     `- error: cannot infer contextual base in reference to member 'global'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:35:34: error: cannot infer contextual base in reference to member 'userInitiated'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
   |                                  `- error: cannot infer contextual base in reference to member 'userInitiated'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:37:21: error: cannot infer contextual base in reference to member 'global'
35 |             queue: .global(qos: .userInitiated))
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
   |                     `- error: cannot infer contextual base in reference to member 'global'
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
39 |     }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:37:34: error: cannot infer contextual base in reference to member 'userInteractive'
35 |             queue: .global(qos: .userInitiated))
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
   |                                  `- error: cannot infer contextual base in reference to member 'userInteractive'
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
39 |     }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:38:74: error: cannot infer contextual base in reference to member 'global'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
   |                                                                          `- error: cannot infer contextual base in reference to member 'global'
39 |     }
40 |
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:38:87: error: cannot infer contextual base in reference to member 'unspecified'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
   |                                                                                       `- error: cannot infer contextual base in reference to member 'unspecified'
39 |     }
40 |
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:47:45: error: cannot find type 'DispatchQoS' in scope
45 |         }
46 |
47 |         public static func globalQueue(qos: DispatchQoS.QoSClass = .default) -> QueueExecutor {
   |                                             `- error: cannot find type 'DispatchQoS' in scope
48 |             switch qos {
49 |                 case .background:
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:68:18: error: cannot find type 'DispatchQoS' in scope
66 |         public static func queue(
67 |             label: String,
68 |             qos: DispatchQoS = .unspecified,
   |                  `- error: cannot find type 'DispatchQoS' in scope
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:69:25: error: cannot find type 'DispatchQueue' in scope
67 |             label: String,
68 |             qos: DispatchQoS = .unspecified,
69 |             attributes: DispatchQueue.Attributes = [],
   |                         `- error: cannot find type 'DispatchQueue' in scope
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
71 |             target: DispatchQueue? = nil
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:70:35: error: cannot find type 'DispatchQueue' in scope
68 |             qos: DispatchQoS = .unspecified,
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
   |                                   `- error: cannot find type 'DispatchQueue' in scope
71 |             target: DispatchQueue? = nil
72 |         ) -> QueueExecutor {
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:71:21: error: cannot find type 'DispatchQueue' in scope
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
71 |             target: DispatchQueue? = nil
   |                     `- error: cannot find type 'DispatchQueue' in scope
72 |         ) -> QueueExecutor {
73 |             queue(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:79:43: error: cannot find type 'DispatchQueue' in scope
77 |         }
78 |
79 |         public static func queue(_ queue: DispatchQueue) -> QueueExecutor {
   |                                           `- error: cannot find type 'DispatchQueue' in scope
80 |             QueueExecutor(queue: queue)
81 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:62:42: error: cannot infer contextual base in reference to member 'global'
60 |                     return .globalUnspecified
61 |                 @unknown default:
62 |                     return .init(queue: .global(qos: qos))
   |                                          `- error: cannot infer contextual base in reference to member 'global'
63 |             }
64 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:74:17: error: cannot find 'DispatchQueue' in scope
72 |         ) -> QueueExecutor {
73 |             queue(
74 |                 DispatchQueue(
   |                 `- error: cannot find 'DispatchQueue' in scope
75 |                     label: label, qos: qos, attributes: attributes,
76 |                     autoreleaseFrequency: autoreleaseFrequency, target: target))
/host/spi-builder-workspace/Sources/Afluent/Additions/URLSessionAdditions.swift:14:5: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
12 |     #endif
13 |
14 |     extension URLSession {
   |     `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
15 |         /// Returns a deferred data task that wraps a URL session data task for a given URL.
16 |         public func deferredDataTask(from url: URL) -> some AsynchronousUnitOfWork<
/host/spi-builder-workspace/Sources/Afluent/Additions/URLSessionAdditions.swift:25:54: error: cannot find type 'URLRequest' in scope
23 |
24 |         /// Returns a deferred data task that wraps a URL session data task for a given URL.
25 |         public func deferredDataTask(for urlRequest: URLRequest) -> some AsynchronousUnitOfWork<
   |                                                      `- error: cannot find type 'URLRequest' in scope
26 |             (data: Data, response: URLResponse)
27 |         > {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[38/113] Compiling Afluent DeferredTask.swift
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:13:20: error: cannot find type 'DispatchQueue' in scope
11 |     @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
12 |     public final class QueueExecutor: TaskExecutor, Sendable, CustomStringConvertible {
13 |         let queue: DispatchQueue
   |                    `- error: cannot find type 'DispatchQueue' in scope
14 |
15 |         init(queue: DispatchQueue) {
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:15:21: error: cannot find type 'DispatchQueue' in scope
13 |         let queue: DispatchQueue
14 |
15 |         init(queue: DispatchQueue) {
   |                     `- error: cannot find type 'DispatchQueue' in scope
16 |             self.queue = queue
17 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:30:61: error: cannot infer contextual base in reference to member 'main'
28 |         }
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
   |                                                             `- error: cannot infer contextual base in reference to member 'main'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:31:73: error: cannot infer contextual base in reference to member 'global'
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
   |                                                                         `- error: cannot infer contextual base in reference to member 'global'
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:31:86: error: cannot infer contextual base in reference to member 'background'
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
   |                                                                                      `- error: cannot infer contextual base in reference to member 'background'
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:32:70: error: cannot infer contextual base in reference to member 'global'
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
   |                                                                      `- error: cannot infer contextual base in reference to member 'global'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:32:83: error: cannot infer contextual base in reference to member 'utility'
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
   |                                                                                   `- error: cannot infer contextual base in reference to member 'utility'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:33:70: error: cannot infer contextual base in reference to member 'global'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
   |                                                                      `- error: cannot infer contextual base in reference to member 'global'
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:33:83: error: cannot infer contextual base in reference to member 'default'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
   |                                                                                   `- error: cannot infer contextual base in reference to member 'default'
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:35:21: error: cannot infer contextual base in reference to member 'global'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
   |                     `- error: cannot infer contextual base in reference to member 'global'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:35:34: error: cannot infer contextual base in reference to member 'userInitiated'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
   |                                  `- error: cannot infer contextual base in reference to member 'userInitiated'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:37:21: error: cannot infer contextual base in reference to member 'global'
35 |             queue: .global(qos: .userInitiated))
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
   |                     `- error: cannot infer contextual base in reference to member 'global'
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
39 |     }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:37:34: error: cannot infer contextual base in reference to member 'userInteractive'
35 |             queue: .global(qos: .userInitiated))
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
   |                                  `- error: cannot infer contextual base in reference to member 'userInteractive'
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
39 |     }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:38:74: error: cannot infer contextual base in reference to member 'global'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
   |                                                                          `- error: cannot infer contextual base in reference to member 'global'
39 |     }
40 |
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:38:87: error: cannot infer contextual base in reference to member 'unspecified'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
   |                                                                                       `- error: cannot infer contextual base in reference to member 'unspecified'
39 |     }
40 |
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:47:45: error: cannot find type 'DispatchQoS' in scope
45 |         }
46 |
47 |         public static func globalQueue(qos: DispatchQoS.QoSClass = .default) -> QueueExecutor {
   |                                             `- error: cannot find type 'DispatchQoS' in scope
48 |             switch qos {
49 |                 case .background:
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:68:18: error: cannot find type 'DispatchQoS' in scope
66 |         public static func queue(
67 |             label: String,
68 |             qos: DispatchQoS = .unspecified,
   |                  `- error: cannot find type 'DispatchQoS' in scope
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:69:25: error: cannot find type 'DispatchQueue' in scope
67 |             label: String,
68 |             qos: DispatchQoS = .unspecified,
69 |             attributes: DispatchQueue.Attributes = [],
   |                         `- error: cannot find type 'DispatchQueue' in scope
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
71 |             target: DispatchQueue? = nil
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:70:35: error: cannot find type 'DispatchQueue' in scope
68 |             qos: DispatchQoS = .unspecified,
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
   |                                   `- error: cannot find type 'DispatchQueue' in scope
71 |             target: DispatchQueue? = nil
72 |         ) -> QueueExecutor {
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:71:21: error: cannot find type 'DispatchQueue' in scope
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
71 |             target: DispatchQueue? = nil
   |                     `- error: cannot find type 'DispatchQueue' in scope
72 |         ) -> QueueExecutor {
73 |             queue(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:79:43: error: cannot find type 'DispatchQueue' in scope
77 |         }
78 |
79 |         public static func queue(_ queue: DispatchQueue) -> QueueExecutor {
   |                                           `- error: cannot find type 'DispatchQueue' in scope
80 |             QueueExecutor(queue: queue)
81 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:62:42: error: cannot infer contextual base in reference to member 'global'
60 |                     return .globalUnspecified
61 |                 @unknown default:
62 |                     return .init(queue: .global(qos: qos))
   |                                          `- error: cannot infer contextual base in reference to member 'global'
63 |             }
64 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:74:17: error: cannot find 'DispatchQueue' in scope
72 |         ) -> QueueExecutor {
73 |             queue(
74 |                 DispatchQueue(
   |                 `- error: cannot find 'DispatchQueue' in scope
75 |                     label: label, qos: qos, attributes: attributes,
76 |                     autoreleaseFrequency: autoreleaseFrequency, target: target))
/host/spi-builder-workspace/Sources/Afluent/Additions/URLSessionAdditions.swift:14:5: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
12 |     #endif
13 |
14 |     extension URLSession {
   |     `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
15 |         /// Returns a deferred data task that wraps a URL session data task for a given URL.
16 |         public func deferredDataTask(from url: URL) -> some AsynchronousUnitOfWork<
/host/spi-builder-workspace/Sources/Afluent/Additions/URLSessionAdditions.swift:25:54: error: cannot find type 'URLRequest' in scope
23 |
24 |         /// Returns a deferred data task that wraps a URL session data task for a given URL.
25 |         public func deferredDataTask(for urlRequest: URLRequest) -> some AsynchronousUnitOfWork<
   |                                                      `- error: cannot find type 'URLRequest' in scope
26 |             (data: Data, response: URLResponse)
27 |         > {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[39/113] Compiling Afluent TimeoutError.swift
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:13:20: error: cannot find type 'DispatchQueue' in scope
11 |     @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
12 |     public final class QueueExecutor: TaskExecutor, Sendable, CustomStringConvertible {
13 |         let queue: DispatchQueue
   |                    `- error: cannot find type 'DispatchQueue' in scope
14 |
15 |         init(queue: DispatchQueue) {
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:15:21: error: cannot find type 'DispatchQueue' in scope
13 |         let queue: DispatchQueue
14 |
15 |         init(queue: DispatchQueue) {
   |                     `- error: cannot find type 'DispatchQueue' in scope
16 |             self.queue = queue
17 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:30:61: error: cannot infer contextual base in reference to member 'main'
28 |         }
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
   |                                                             `- error: cannot infer contextual base in reference to member 'main'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:31:73: error: cannot infer contextual base in reference to member 'global'
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
   |                                                                         `- error: cannot infer contextual base in reference to member 'global'
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:31:86: error: cannot infer contextual base in reference to member 'background'
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
   |                                                                                      `- error: cannot infer contextual base in reference to member 'background'
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:32:70: error: cannot infer contextual base in reference to member 'global'
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
   |                                                                      `- error: cannot infer contextual base in reference to member 'global'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:32:83: error: cannot infer contextual base in reference to member 'utility'
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
   |                                                                                   `- error: cannot infer contextual base in reference to member 'utility'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:33:70: error: cannot infer contextual base in reference to member 'global'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
   |                                                                      `- error: cannot infer contextual base in reference to member 'global'
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:33:83: error: cannot infer contextual base in reference to member 'default'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
   |                                                                                   `- error: cannot infer contextual base in reference to member 'default'
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:35:21: error: cannot infer contextual base in reference to member 'global'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
   |                     `- error: cannot infer contextual base in reference to member 'global'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:35:34: error: cannot infer contextual base in reference to member 'userInitiated'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
   |                                  `- error: cannot infer contextual base in reference to member 'userInitiated'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:37:21: error: cannot infer contextual base in reference to member 'global'
35 |             queue: .global(qos: .userInitiated))
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
   |                     `- error: cannot infer contextual base in reference to member 'global'
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
39 |     }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:37:34: error: cannot infer contextual base in reference to member 'userInteractive'
35 |             queue: .global(qos: .userInitiated))
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
   |                                  `- error: cannot infer contextual base in reference to member 'userInteractive'
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
39 |     }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:38:74: error: cannot infer contextual base in reference to member 'global'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
   |                                                                          `- error: cannot infer contextual base in reference to member 'global'
39 |     }
40 |
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:38:87: error: cannot infer contextual base in reference to member 'unspecified'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
   |                                                                                       `- error: cannot infer contextual base in reference to member 'unspecified'
39 |     }
40 |
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:47:45: error: cannot find type 'DispatchQoS' in scope
45 |         }
46 |
47 |         public static func globalQueue(qos: DispatchQoS.QoSClass = .default) -> QueueExecutor {
   |                                             `- error: cannot find type 'DispatchQoS' in scope
48 |             switch qos {
49 |                 case .background:
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:68:18: error: cannot find type 'DispatchQoS' in scope
66 |         public static func queue(
67 |             label: String,
68 |             qos: DispatchQoS = .unspecified,
   |                  `- error: cannot find type 'DispatchQoS' in scope
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:69:25: error: cannot find type 'DispatchQueue' in scope
67 |             label: String,
68 |             qos: DispatchQoS = .unspecified,
69 |             attributes: DispatchQueue.Attributes = [],
   |                         `- error: cannot find type 'DispatchQueue' in scope
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
71 |             target: DispatchQueue? = nil
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:70:35: error: cannot find type 'DispatchQueue' in scope
68 |             qos: DispatchQoS = .unspecified,
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
   |                                   `- error: cannot find type 'DispatchQueue' in scope
71 |             target: DispatchQueue? = nil
72 |         ) -> QueueExecutor {
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:71:21: error: cannot find type 'DispatchQueue' in scope
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
71 |             target: DispatchQueue? = nil
   |                     `- error: cannot find type 'DispatchQueue' in scope
72 |         ) -> QueueExecutor {
73 |             queue(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:79:43: error: cannot find type 'DispatchQueue' in scope
77 |         }
78 |
79 |         public static func queue(_ queue: DispatchQueue) -> QueueExecutor {
   |                                           `- error: cannot find type 'DispatchQueue' in scope
80 |             QueueExecutor(queue: queue)
81 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:62:42: error: cannot infer contextual base in reference to member 'global'
60 |                     return .globalUnspecified
61 |                 @unknown default:
62 |                     return .init(queue: .global(qos: qos))
   |                                          `- error: cannot infer contextual base in reference to member 'global'
63 |             }
64 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:74:17: error: cannot find 'DispatchQueue' in scope
72 |         ) -> QueueExecutor {
73 |             queue(
74 |                 DispatchQueue(
   |                 `- error: cannot find 'DispatchQueue' in scope
75 |                     label: label, qos: qos, attributes: attributes,
76 |                     autoreleaseFrequency: autoreleaseFrequency, target: target))
/host/spi-builder-workspace/Sources/Afluent/Additions/URLSessionAdditions.swift:14:5: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
12 |     #endif
13 |
14 |     extension URLSession {
   |     `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
15 |         /// Returns a deferred data task that wraps a URL session data task for a given URL.
16 |         public func deferredDataTask(from url: URL) -> some AsynchronousUnitOfWork<
/host/spi-builder-workspace/Sources/Afluent/Additions/URLSessionAdditions.swift:25:54: error: cannot find type 'URLRequest' in scope
23 |
24 |         /// Returns a deferred data task that wraps a URL session data task for a given URL.
25 |         public func deferredDataTask(for urlRequest: URLRequest) -> some AsynchronousUnitOfWork<
   |                                                      `- error: cannot find type 'URLRequest' in scope
26 |             (data: Data, response: URLResponse)
27 |         > {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[40/113] Compiling Afluent AsyncSequenceExtensions.swift
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:13:20: error: cannot find type 'DispatchQueue' in scope
11 |     @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
12 |     public final class QueueExecutor: TaskExecutor, Sendable, CustomStringConvertible {
13 |         let queue: DispatchQueue
   |                    `- error: cannot find type 'DispatchQueue' in scope
14 |
15 |         init(queue: DispatchQueue) {
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:15:21: error: cannot find type 'DispatchQueue' in scope
13 |         let queue: DispatchQueue
14 |
15 |         init(queue: DispatchQueue) {
   |                     `- error: cannot find type 'DispatchQueue' in scope
16 |             self.queue = queue
17 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:30:61: error: cannot infer contextual base in reference to member 'main'
28 |         }
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
   |                                                             `- error: cannot infer contextual base in reference to member 'main'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:31:73: error: cannot infer contextual base in reference to member 'global'
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
   |                                                                         `- error: cannot infer contextual base in reference to member 'global'
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:31:86: error: cannot infer contextual base in reference to member 'background'
29 |
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
   |                                                                                      `- error: cannot infer contextual base in reference to member 'background'
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:32:70: error: cannot infer contextual base in reference to member 'global'
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
   |                                                                      `- error: cannot infer contextual base in reference to member 'global'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:32:83: error: cannot infer contextual base in reference to member 'utility'
30 |         fileprivate static let main = QueueExecutor(queue: .main)
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
   |                                                                                   `- error: cannot infer contextual base in reference to member 'utility'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:33:70: error: cannot infer contextual base in reference to member 'global'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
   |                                                                      `- error: cannot infer contextual base in reference to member 'global'
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:33:83: error: cannot infer contextual base in reference to member 'default'
31 |         fileprivate static let globalBackground = QueueExecutor(queue: .global(qos: .background))
32 |         fileprivate static let globalUtility = QueueExecutor(queue: .global(qos: .utility))
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
   |                                                                                   `- error: cannot infer contextual base in reference to member 'default'
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:35:21: error: cannot infer contextual base in reference to member 'global'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
   |                     `- error: cannot infer contextual base in reference to member 'global'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:35:34: error: cannot infer contextual base in reference to member 'userInitiated'
33 |         fileprivate static let globalDefault = QueueExecutor(queue: .global(qos: .default))
34 |         fileprivate static let globalUserInitiated = QueueExecutor(
35 |             queue: .global(qos: .userInitiated))
   |                                  `- error: cannot infer contextual base in reference to member 'userInitiated'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:37:21: error: cannot infer contextual base in reference to member 'global'
35 |             queue: .global(qos: .userInitiated))
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
   |                     `- error: cannot infer contextual base in reference to member 'global'
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
39 |     }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:37:34: error: cannot infer contextual base in reference to member 'userInteractive'
35 |             queue: .global(qos: .userInitiated))
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
   |                                  `- error: cannot infer contextual base in reference to member 'userInteractive'
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
39 |     }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:38:74: error: cannot infer contextual base in reference to member 'global'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
   |                                                                          `- error: cannot infer contextual base in reference to member 'global'
39 |     }
40 |
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:38:87: error: cannot infer contextual base in reference to member 'unspecified'
36 |         fileprivate static let globalUserInteractive = QueueExecutor(
37 |             queue: .global(qos: .userInteractive))
38 |         fileprivate static let globalUnspecified = QueueExecutor(queue: .global(qos: .unspecified))
   |                                                                                       `- error: cannot infer contextual base in reference to member 'unspecified'
39 |     }
40 |
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:47:45: error: cannot find type 'DispatchQoS' in scope
45 |         }
46 |
47 |         public static func globalQueue(qos: DispatchQoS.QoSClass = .default) -> QueueExecutor {
   |                                             `- error: cannot find type 'DispatchQoS' in scope
48 |             switch qos {
49 |                 case .background:
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:68:18: error: cannot find type 'DispatchQoS' in scope
66 |         public static func queue(
67 |             label: String,
68 |             qos: DispatchQoS = .unspecified,
   |                  `- error: cannot find type 'DispatchQoS' in scope
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:69:25: error: cannot find type 'DispatchQueue' in scope
67 |             label: String,
68 |             qos: DispatchQoS = .unspecified,
69 |             attributes: DispatchQueue.Attributes = [],
   |                         `- error: cannot find type 'DispatchQueue' in scope
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
71 |             target: DispatchQueue? = nil
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:70:35: error: cannot find type 'DispatchQueue' in scope
68 |             qos: DispatchQoS = .unspecified,
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
   |                                   `- error: cannot find type 'DispatchQueue' in scope
71 |             target: DispatchQueue? = nil
72 |         ) -> QueueExecutor {
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:71:21: error: cannot find type 'DispatchQueue' in scope
69 |             attributes: DispatchQueue.Attributes = [],
70 |             autoreleaseFrequency: DispatchQueue.AutoreleaseFrequency = .inherit,
71 |             target: DispatchQueue? = nil
   |                     `- error: cannot find type 'DispatchQueue' in scope
72 |         ) -> QueueExecutor {
73 |             queue(
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:79:43: error: cannot find type 'DispatchQueue' in scope
77 |         }
78 |
79 |         public static func queue(_ queue: DispatchQueue) -> QueueExecutor {
   |                                           `- error: cannot find type 'DispatchQueue' in scope
80 |             QueueExecutor(queue: queue)
81 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:62:42: error: cannot infer contextual base in reference to member 'global'
60 |                     return .globalUnspecified
61 |                 @unknown default:
62 |                     return .init(queue: .global(qos: qos))
   |                                          `- error: cannot infer contextual base in reference to member 'global'
63 |             }
64 |         }
/host/spi-builder-workspace/Sources/Afluent/Additions/QueueExecutor.swift:74:17: error: cannot find 'DispatchQueue' in scope
72 |         ) -> QueueExecutor {
73 |             queue(
74 |                 DispatchQueue(
   |                 `- error: cannot find 'DispatchQueue' in scope
75 |                     label: label, qos: qos, attributes: attributes,
76 |                     autoreleaseFrequency: autoreleaseFrequency, target: target))
/host/spi-builder-workspace/Sources/Afluent/Additions/URLSessionAdditions.swift:14:5: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
12 |     #endif
13 |
14 |     extension URLSession {
   |     `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
15 |         /// Returns a deferred data task that wraps a URL session data task for a given URL.
16 |         public func deferredDataTask(from url: URL) -> some AsynchronousUnitOfWork<
/host/spi-builder-workspace/Sources/Afluent/Additions/URLSessionAdditions.swift:25:54: error: cannot find type 'URLRequest' in scope
23 |
24 |         /// Returns a deferred data task that wraps a URL session data task for a given URL.
25 |         public func deferredDataTask(for urlRequest: URLRequest) -> some AsynchronousUnitOfWork<
   |                                                      `- error: cannot find type 'URLRequest' in scope
26 |             (data: Data, response: URLResponse)
27 |         > {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[41/113] Compiling Afluent Assign.swift
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:21: error: cannot find 'raise' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:27: error: cannot find 'SIGTRAP' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:21: error: cannot find 'raise' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:27: error: cannot find 'SIGTRAP' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:46:21: warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
/host/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:46:21: warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[42/113] Compiling Afluent Breakpoint.swift
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:21: error: cannot find 'raise' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:27: error: cannot find 'SIGTRAP' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:21: error: cannot find 'raise' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:27: error: cannot find 'SIGTRAP' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:46:21: warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
/host/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:46:21: warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[43/113] Compiling Afluent Catch.swift
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:21: error: cannot find 'raise' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:27: error: cannot find 'SIGTRAP' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:21: error: cannot find 'raise' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:27: error: cannot find 'SIGTRAP' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:46:21: warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
/host/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:46:21: warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[44/113] Compiling Afluent Decode.swift
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:21: error: cannot find 'raise' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:27: error: cannot find 'SIGTRAP' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:21: error: cannot find 'raise' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:27: error: cannot find 'SIGTRAP' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:46:21: warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
/host/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:46:21: warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[45/113] Compiling Afluent Delay.swift
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:21: error: cannot find 'raise' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:27: error: cannot find 'SIGTRAP' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:21: error: cannot find 'raise' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:27: error: cannot find 'SIGTRAP' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:46:21: warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
/host/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:46:21: warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[46/113] Compiling Afluent Dematerialize.swift
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:21: error: cannot find 'raise' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:27: error: cannot find 'SIGTRAP' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:21: error: cannot find 'raise' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:27: error: cannot find 'SIGTRAP' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:46:21: warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
/host/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:46:21: warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[47/113] Compiling Afluent DiscardOutput.swift
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:21: error: cannot find 'raise' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:27: error: cannot find 'SIGTRAP' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:21: error: cannot find 'raise' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:27: error: cannot find 'SIGTRAP' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:46:21: warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
/host/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:46:21: warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[48/113] Compiling Afluent Encode.swift
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:21: error: cannot find 'raise' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:27: error: cannot find 'SIGTRAP' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:21: error: cannot find 'raise' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:27: error: cannot find 'SIGTRAP' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:46:21: warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
/host/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:46:21: warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[49/113] Compiling Afluent EraseToAnyAsynchronousUnitOfWork.swift
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:21: error: cannot find 'raise' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:27: error: cannot find 'SIGTRAP' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:21: error: cannot find 'raise' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:27: error: cannot find 'SIGTRAP' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:46:21: warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
/host/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:46:21: warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[50/113] Compiling Afluent FlatMap.swift
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:21: error: cannot find 'raise' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:60:27: error: cannot find 'SIGTRAP' in scope
58 |             receiveOutput: { output in
59 |                 if try await receiveOutput?(output) == true {
60 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
61 |                 }
62 |             },
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:21: error: cannot find 'raise' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Breakpoint.swift:65:27: error: cannot find 'SIGTRAP' in scope
63 |             receiveError: { error in
64 |                 if try await receiveError?(error) == true {
65 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
66 |                 }
67 |             })
/host/spi-builder-workspace/Sources/Afluent/Workers/Decode.swift:46:21: warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try decoderState.decode(Success.self, from: await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Decoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
/host/spi-builder-workspace/Sources/Afluent/Workers/Encode.swift:46:21: warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
44 |         func _operation() async throws -> AsynchronousOperation<Success> {
45 |             AsynchronousOperation {
46 |                 try encoderState.encode(await upstream.operation())
   |                     `- warning: capture of non-Sendable type 'Encoder.Type' in an isolated closure [#SendableMetatypes]
47 |             }
48 |         }
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[51/113] Compiling Afluent AssertNoFailureSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:21: error: cannot find 'raise' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:27: error: cannot find 'SIGTRAP' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:21: error: cannot find 'raise' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
44 |                 }
45 |             })
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:27: error: cannot find 'SIGTRAP' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
44 |                 }
45 |             })
[52/113] Compiling Afluent AsyncSequences.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:21: error: cannot find 'raise' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:27: error: cannot find 'SIGTRAP' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:21: error: cannot find 'raise' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
44 |                 }
45 |             })
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:27: error: cannot find 'SIGTRAP' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
44 |                 }
45 |             })
[53/113] Compiling Afluent BreakpointSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:21: error: cannot find 'raise' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:27: error: cannot find 'SIGTRAP' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:21: error: cannot find 'raise' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
44 |                 }
45 |             })
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:27: error: cannot find 'SIGTRAP' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
44 |                 }
45 |             })
[54/113] Compiling Afluent CatchSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:21: error: cannot find 'raise' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:27: error: cannot find 'SIGTRAP' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:21: error: cannot find 'raise' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
44 |                 }
45 |             })
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:27: error: cannot find 'SIGTRAP' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
44 |                 }
45 |             })
[55/113] Compiling Afluent CollectSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:21: error: cannot find 'raise' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:27: error: cannot find 'SIGTRAP' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:21: error: cannot find 'raise' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
44 |                 }
45 |             })
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:27: error: cannot find 'SIGTRAP' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
44 |                 }
45 |             })
[56/113] Compiling Afluent DecodeSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:21: error: cannot find 'raise' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:27: error: cannot find 'SIGTRAP' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:21: error: cannot find 'raise' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
44 |                 }
45 |             })
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:27: error: cannot find 'SIGTRAP' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
44 |                 }
45 |             })
[57/113] Compiling Afluent Deferred.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:21: error: cannot find 'raise' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:27: error: cannot find 'SIGTRAP' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:21: error: cannot find 'raise' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
44 |                 }
45 |             })
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:27: error: cannot find 'SIGTRAP' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
44 |                 }
45 |             })
[58/113] Compiling Afluent DelaySequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:21: error: cannot find 'raise' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:27: error: cannot find 'SIGTRAP' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:21: error: cannot find 'raise' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
44 |                 }
45 |             })
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:27: error: cannot find 'SIGTRAP' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
44 |                 }
45 |             })
[59/113] Compiling Afluent DematerializeSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:21: error: cannot find 'raise' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:27: error: cannot find 'SIGTRAP' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:21: error: cannot find 'raise' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
44 |                 }
45 |             })
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:27: error: cannot find 'SIGTRAP' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
44 |                 }
45 |             })
[60/113] Compiling Afluent DiscardOutputSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:21: error: cannot find 'raise' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:27: error: cannot find 'SIGTRAP' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:21: error: cannot find 'raise' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
44 |                 }
45 |             })
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:27: error: cannot find 'SIGTRAP' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
44 |                 }
45 |             })
[61/113] Compiling Afluent EncodeSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:21: error: cannot find 'raise' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:38:27: error: cannot find 'SIGTRAP' in scope
36 |             receiveOutput: { output in
37 |                 if try await receiveOutput?(output) == true {
38 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
39 |                 }
40 |             },
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:21: error: cannot find 'raise' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                     `- error: cannot find 'raise' in scope
44 |                 }
45 |             })
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/BreakpointSequence.swift:43:27: error: cannot find 'SIGTRAP' in scope
41 |             receiveError: { error in
42 |                 if try await receiveError?(error) == true {
43 |                     raise(SIGTRAP)
   |                           `- error: cannot find 'SIGTRAP' in scope
44 |                 }
45 |             })
[62/113] Compiling Afluent RetryAfterFlatMappingSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
[63/113] Compiling Afluent RetrySequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
[64/113] Compiling Afluent ScanSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
[65/113] Compiling Afluent ShareFromCacheSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
[66/113] Compiling Afluent ShareSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
[67/113] Compiling Afluent ThrottleSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
[68/113] Compiling Afluent TimerSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
[69/113] Compiling Afluent SerialTaskQueue.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
[70/113] Compiling Afluent AnyCancellable.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
[71/113] Compiling Afluent AssertNoFailure.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
[72/113] Compiling Afluent ErrorExtensions.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[73/113] Compiling Afluent KeyPathExtensions.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[74/113] Compiling Afluent RecursiveLockExtensions.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[75/113] Compiling Afluent PassthroughSubject.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[76/113] Compiling Afluent AsynchronousUnitOfWork.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[77/113] Compiling Afluent Race.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[78/113] Compiling Afluent Rethrow.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[79/113] Compiling Afluent RetryByBackoffStrategy.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[80/113] Compiling Afluent RetryByCountStrategy.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[81/113] Compiling Afluent RetryStrategy.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[82/113] Compiling Afluent AnyAsyncSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
[83/113] Compiling Afluent HandleEvents.swift
[84/113] Compiling Afluent Map.swift
[85/113] Compiling Afluent MapError.swift
[86/113] Compiling Afluent Materialize.swift
[87/113] Compiling Afluent Print.swift
[88/113] Compiling Afluent ReplaceError.swift
[89/113] Compiling Afluent ReplaceNil.swift
[90/113] Compiling Afluent Retain.swift
[91/113] Compiling Afluent Retry.swift
[92/113] Compiling Afluent RetryAfterFlatMapping.swift
[93/113] Compiling Afluent FlatMapSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:121:65: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
119 |
120 | struct ManagedCriticalState<State> {
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
    |                                                                 `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:123:13: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
    |             `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
124 |         }
125 |     }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:130:16: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
128 |
129 |     init(_ initial: State) {
130 |         buffer = LockedBuffer.create(minimumCapacity: 1) { buffer in
    |                `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
131 |             buffer.withUnsafeMutablePointerToElements { Lock.initialize($0) }
132 |             return initial
[94/113] Compiling Afluent GroupBySequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:121:65: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
119 |
120 | struct ManagedCriticalState<State> {
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
    |                                                                 `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:123:13: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
    |             `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
124 |         }
125 |     }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:130:16: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
128 |
129 |     init(_ initial: State) {
130 |         buffer = LockedBuffer.create(minimumCapacity: 1) { buffer in
    |                `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
131 |             buffer.withUnsafeMutablePointerToElements { Lock.initialize($0) }
132 |             return initial
[95/113] Compiling Afluent HandleEventsSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:121:65: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
119 |
120 | struct ManagedCriticalState<State> {
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
    |                                                                 `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:123:13: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
    |             `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
124 |         }
125 |     }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:130:16: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
128 |
129 |     init(_ initial: State) {
130 |         buffer = LockedBuffer.create(minimumCapacity: 1) { buffer in
    |                `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
131 |             buffer.withUnsafeMutablePointerToElements { Lock.initialize($0) }
132 |             return initial
[96/113] Compiling Afluent JustSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:121:65: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
119 |
120 | struct ManagedCriticalState<State> {
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
    |                                                                 `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:123:13: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
    |             `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
124 |         }
125 |     }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:130:16: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
128 |
129 |     init(_ initial: State) {
130 |         buffer = LockedBuffer.create(minimumCapacity: 1) { buffer in
    |                `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
131 |             buffer.withUnsafeMutablePointerToElements { Lock.initialize($0) }
132 |             return initial
[97/113] Compiling Afluent MapErrorSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:121:65: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
119 |
120 | struct ManagedCriticalState<State> {
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
    |                                                                 `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:123:13: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
    |             `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
124 |         }
125 |     }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:130:16: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
128 |
129 |     init(_ initial: State) {
130 |         buffer = LockedBuffer.create(minimumCapacity: 1) { buffer in
    |                `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
131 |             buffer.withUnsafeMutablePointerToElements { Lock.initialize($0) }
132 |             return initial
[98/113] Compiling Afluent MaterializeSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:121:65: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
119 |
120 | struct ManagedCriticalState<State> {
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
    |                                                                 `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:123:13: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
    |             `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
124 |         }
125 |     }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:130:16: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
128 |
129 |     init(_ initial: State) {
130 |         buffer = LockedBuffer.create(minimumCapacity: 1) { buffer in
    |                `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
131 |             buffer.withUnsafeMutablePointerToElements { Lock.initialize($0) }
132 |             return initial
[99/113] Compiling Afluent OutputSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:121:65: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
119 |
120 | struct ManagedCriticalState<State> {
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
    |                                                                 `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:123:13: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
    |             `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
124 |         }
125 |     }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:130:16: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
128 |
129 |     init(_ initial: State) {
130 |         buffer = LockedBuffer.create(minimumCapacity: 1) { buffer in
    |                `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
131 |             buffer.withUnsafeMutablePointerToElements { Lock.initialize($0) }
132 |             return initial
[100/113] Compiling Afluent PlatformLock.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:121:65: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
119 |
120 | struct ManagedCriticalState<State> {
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
    |                                                                 `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:123:13: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
    |             `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
124 |         }
125 |     }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:130:16: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
128 |
129 |     init(_ initial: State) {
130 |         buffer = LockedBuffer.create(minimumCapacity: 1) { buffer in
    |                `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
131 |             buffer.withUnsafeMutablePointerToElements { Lock.initialize($0) }
132 |             return initial
[101/113] Compiling Afluent PrintSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:121:65: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
119 |
120 | struct ManagedCriticalState<State> {
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
    |                                                                 `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:123:13: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
    |             `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
124 |         }
125 |     }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:130:16: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
128 |
129 |     init(_ initial: State) {
130 |         buffer = LockedBuffer.create(minimumCapacity: 1) { buffer in
    |                `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
131 |             buffer.withUnsafeMutablePointerToElements { Lock.initialize($0) }
132 |             return initial
[102/113] Compiling Afluent ReplaceErrorSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:121:65: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
119 |
120 | struct ManagedCriticalState<State> {
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
    |                                                                 `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:123:13: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
    |             `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
124 |         }
125 |     }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:130:16: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
128 |
129 |     init(_ initial: State) {
130 |         buffer = LockedBuffer.create(minimumCapacity: 1) { buffer in
    |                `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
131 |             buffer.withUnsafeMutablePointerToElements { Lock.initialize($0) }
132 |             return initial
[103/113] Compiling Afluent ReplaceNilSequence.swift
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:36:51: error: cannot find type 'Primitive' in scope
 34 |     #endif
 35 |
 36 |     typealias PlatformLock = UnsafeMutablePointer<Primitive>
    |                                                   `- error: cannot find type 'Primitive' in scope
 37 |     let platformLock: PlatformLock
 38 |
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:121:65: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
119 |
120 | struct ManagedCriticalState<State> {
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
    |                                                                 `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:127:51: error: 'Primitive' is not a member type of struct 'Afluent.Lock'
 25 | #endif
 26 |
 27 | internal struct Lock {
    |                 `- note: 'Lock' declared here
 28 |     #if canImport(Darwin)
 29 |         typealias Primitive = os_unfair_lock
    :
125 |     }
126 |
127 |     private var buffer: ManagedBuffer<State, Lock.Primitive>
    |                                                   `- error: 'Primitive' is not a member type of struct 'Afluent.Lock'
128 |
129 |     init(_ initial: State) {
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:123:13: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
121 |     private final class LockedBuffer: ManagedBuffer<State, Lock.Primitive> {
122 |         deinit {
123 |             withUnsafeMutablePointerToElements { Lock.deinitialize($0) }
    |             `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
124 |         }
125 |     }
/host/spi-builder-workspace/Sources/Afluent/SequenceOperators/PlatformLock.swift:130:16: error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
128 |
129 |     init(_ initial: State) {
130 |         buffer = LockedBuffer.create(minimumCapacity: 1) { buffer in
    |                `- error: failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
131 |             buffer.withUnsafeMutablePointerToElements { Lock.initialize($0) }
132 |             return initial
[104/113] Compiling Afluent Share.swift
[105/113] Compiling Afluent ShareFromCache.swift
[106/113] Compiling Afluent SingleValueChannel.swift
[107/113] Compiling Afluent SingleValueSubject.swift
[108/113] Compiling Afluent Timeout.swift
[109/113] Compiling Afluent ToAsyncSequence.swift
[110/113] Compiling Afluent UnwrapOrThrow.swift
[111/113] Compiling Afluent WithUnretained.swift
[112/113] Compiling Afluent Workers.swift
[113/113] Compiling Afluent Zip.swift
BUILD FAILURE 6.3 wasm