Build Information
Failed to build Futures, reference master (518a3f
), with Swift 6.2 (beta) for Linux on 17 Jun 2025 16:33:50 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/dfunckt/swift-futures.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/dfunckt/swift-futures
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 518a3fd Update for swiftformat 0.47.2
Cloned https://github.com/dfunckt/swift-futures.git
Revision (git rev-parse @):
518a3fddab9feb068391e10302d44181e3653979
SUCCESS checkout https://github.com/dfunckt/swift-futures.git at master
========================================
Build
========================================
Selected platform: linux
Swift version: 6.2
Building package at path: $PWD
https://github.com/dfunckt/swift-futures.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Building for debugging...
[0/5] Write sources
[3/5] Compiling FuturesPrivate Private.c
[4/5] Write swift-version-24593BA9C3E375BF.txt
[6/27] Compiling FuturesSync AtomicMPMCQueue.swift
[7/27] Compiling FuturesSync AtomicMPSCQueue.swift
[8/27] Compiling FuturesSync AtomicSPMCQueue.swift
[9/27] Compiling FuturesSync AtomicQueue.swift
[10/27] Compiling FuturesSync AtomicBuffer.swift
[11/27] Compiling FuturesSync AtomicList.swift
[12/30] Compiling FuturesSync Atomic.swift
[13/30] Compiling FuturesSync AtomicBitset.swift
[14/30] Compiling FuturesSync AtomicEnum.swift
[15/30] Compiling FuturesSync AtomicPointer.swift
[16/30] Compiling FuturesSync AtomicReference.swift
[17/30] Compiling FuturesSync AtomicValue.swift
[18/30] Emitting module FuturesSync
[19/30] Compiling FuturesSync PosixLock.swift
[20/30] Compiling FuturesSync SpinLock.swift
[21/30] Compiling FuturesSync UnfairLock.swift
[22/30] Compiling FuturesSync AtomicSPSCQueue.swift
[23/30] Compiling FuturesSync AtomicUnboundedMPSCQueue.swift
[24/30] Compiling FuturesSync AtomicUnboundedSPSCQueue.swift
[25/30] Compiling FuturesSync Backoff.swift
[26/30] Compiling FuturesSync Locking.swift
[27/30] Compiling FuturesSync PosixConditionLock.swift
[28/30] Compiling FuturesSync Mutex.swift
[29/30] Compiling FuturesSync Private.swift
[30/30] Compiling FuturesSync Thread.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[32/158] Emitting module Futures
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[33/176] Compiling Futures OptionalStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[34/176] Compiling Futures OutputStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[35/176] Compiling Futures PollOnStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[36/176] Compiling Futures PrefixStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[37/176] Compiling Futures PrefixUntilOutputStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[38/176] Compiling Futures PrefixWhileStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[39/176] Compiling Futures PrintStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[40/176] Compiling Futures ReferenceStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[41/176] Compiling Futures RemoveDuplicatesStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[42/176] Compiling Futures RepeatStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[43/176] Compiling Futures ReplaceEmptyStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[44/176] Compiling Futures ReplaceErrorStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[45/176] Compiling Futures ScanStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[46/176] Compiling Futures SequenceStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[47/176] Compiling Futures SetFailureTypeStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[48/176] Compiling Futures ShareStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[49/176] Compiling Futures StreamAllSatisfyFuture.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[50/176] Compiling Futures StreamContainsFuture.swift
/host/spi-builder-workspace/Sources/Futures/Stream/SetFailureTypeStream.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[51/176] Compiling Futures SinkSendFuture.swift
[52/176] Compiling Futures Stream.swift
[53/176] Compiling Futures AbortStream.swift
[54/176] Compiling Futures AssertNoErrorStream.swift
[55/176] Compiling Futures BreakpointStream.swift
[56/176] Compiling Futures BufferStream.swift
[57/176] Compiling Futures CatchErrorStream.swift
[58/176] Compiling Futures CompactMapStream.swift
[59/176] Compiling Futures CompleteOnErrorStream.swift
[60/176] Compiling Futures ConcatenateStream.swift
[61/176] Compiling Futures DropStream.swift
[62/176] Compiling Futures DropUntilOutputStream.swift
[63/176] Compiling Futures DropWhileStream.swift
[64/176] Compiling Futures EmptyStream.swift
[65/176] Compiling Futures EnumerateStream.swift
[66/176] Compiling Futures FilterStream.swift
[67/176] Compiling Futures FlatMapStream.swift
[68/176] Compiling Futures FlattenResultStream.swift
[69/176] Compiling Futures Future.swift
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
[70/176] Compiling Futures AbortFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
[71/176] Compiling Futures AssertNoErrorFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
[72/176] Compiling Futures BreakpointFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
[73/176] Compiling Futures CatchErrorFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
[74/176] Compiling Futures FlatMapFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
[75/176] Compiling Futures FlattenFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
[76/176] Compiling Futures FlattenResultFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
[77/176] Compiling Futures FutureStream.swift
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
[78/176] Compiling Futures HandleEventsFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
[79/176] Compiling Futures IgnoreOutputFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
[80/176] Compiling Futures JoinAllFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
[81/176] Compiling Futures JoinFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
[82/176] Compiling Futures LazyFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
[83/176] Compiling Futures MapFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
[84/176] Compiling Futures MapKeyPathFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
[85/176] Compiling Futures MapResultFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
[86/176] Compiling Futures MatchEitherFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/FlattenFuture.swift:17:20: error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeFuture()
| `- error: cannot convert value of type 'Base.Output.FutureType' to closure result type 'Base.Output'
18 | }
19 | }
[87/176] Compiling Futures Cancellable.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
[88/176] Compiling Futures Channel.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
[89/176] Compiling Futures ChannelImpl.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
[90/176] Compiling Futures ChannelMPSCBufferBounded.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
[91/176] Compiling Futures ChannelMPSCBufferUnbounded.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
[92/176] Compiling Futures ChannelMPSCPark.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
[93/176] Compiling Futures ChannelSPSCBufferBounded.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
[94/176] Compiling Futures ChannelSPSCBufferUnbounded.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
[95/176] Compiling Futures ChannelSPSCPark.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
[96/176] Compiling Futures ChannelSlotBounded.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
[97/176] Compiling Futures ChannelSlotUnbounded.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
[98/176] Compiling Futures Context.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
[99/176] Compiling Futures Either.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
[100/176] Compiling Futures Executor.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
[101/176] Compiling Futures QueueExecutor.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
[102/176] Compiling Futures RunLoopExecutor.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
[103/176] Compiling Futures ThreadExecutor.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
[104/176] Compiling Futures Extensions.swift
/host/spi-builder-workspace/Sources/Futures/Executor.swift:140:9: warning: no calls to throwing functions occur within 'try' expression
138 | @inlinable
139 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Void {
140 | try! trySubmit(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
141 | }
142 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:145:9: warning: no calls to throwing functions occur within 'try' expression
143 | @inlinable
144 | public func submit<F: FutureProtocol>(_ future: F) where F.Output == Result<Void, Never> {
145 | try! trySubmit(future.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
146 | }
147 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:150:9: warning: no calls to throwing functions occur within 'try' expression
148 | @inlinable
149 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Void {
150 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
151 | }
152 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:155:9: warning: no calls to throwing functions occur within 'try' expression
153 | @inlinable
154 | public func submit<S: StreamProtocol>(_ stream: S) where S.Output == Result<Void, Never> {
155 | try! trySubmit(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
156 | }
157 | }
/host/spi-builder-workspace/Sources/Futures/Executor.swift:162:9: warning: no calls to throwing functions occur within 'try' expression
160 | @inlinable
161 | public func spawn<F: FutureProtocol>(_ future: F) -> Task<F.Output> {
162 | try! trySpawn(future).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
163 | }
164 |
/host/spi-builder-workspace/Sources/Futures/Executor.swift:167:9: warning: no calls to throwing functions occur within 'try' expression
165 | @inlinable
166 | public func spawn<S: StreamProtocol>(_ stream: S) -> Task<Void> where S.Output == Void {
167 | try! trySpawn(stream.ignoreOutput()).get() // swiftlint:disable:this force_try
| `- warning: no calls to throwing functions occur within 'try' expression
168 | }
169 | }
[105/176] Compiling Futures Private.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:13: warning: will never be executed
22 | @inlinable
23 | public mutating func pollSend(_ context: inout Context, _ item: Input) -> PollSink<Failure> {
24 | return _base.pollSend(&context, item).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
25 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
26 | }
27 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:32:13: warning: will never be executed
29 | @inlinable
30 | public mutating func pollFlush(_ context: inout Context) -> PollSink<Failure> {
31 | return _base.pollFlush(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
32 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
33 | }
34 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:39:13: warning: will never be executed
36 | @inlinable
37 | public mutating func pollClose(_ context: inout Context) -> PollSink<Failure> {
38 | return _base.pollClose(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
39 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
40 | }
41 | }
[106/176] Compiling Futures TaskRunner.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:13: warning: will never be executed
22 | @inlinable
23 | public mutating func pollSend(_ context: inout Context, _ item: Input) -> PollSink<Failure> {
24 | return _base.pollSend(&context, item).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
25 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
26 | }
27 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:32:13: warning: will never be executed
29 | @inlinable
30 | public mutating func pollFlush(_ context: inout Context) -> PollSink<Failure> {
31 | return _base.pollFlush(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
32 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
33 | }
34 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:39:13: warning: will never be executed
36 | @inlinable
37 | public mutating func pollClose(_ context: inout Context) -> PollSink<Failure> {
38 | return _base.pollClose(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
39 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
40 | }
41 | }
[107/176] Compiling Futures TaskScheduler.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:13: warning: will never be executed
22 | @inlinable
23 | public mutating func pollSend(_ context: inout Context, _ item: Input) -> PollSink<Failure> {
24 | return _base.pollSend(&context, item).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
25 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
26 | }
27 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:32:13: warning: will never be executed
29 | @inlinable
30 | public mutating func pollFlush(_ context: inout Context) -> PollSink<Failure> {
31 | return _base.pollFlush(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
32 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
33 | }
34 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:39:13: warning: will never be executed
36 | @inlinable
37 | public mutating func pollClose(_ context: inout Context) -> PollSink<Failure> {
38 | return _base.pollClose(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
39 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
40 | }
41 | }
[108/176] Compiling Futures Poll.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:13: warning: will never be executed
22 | @inlinable
23 | public mutating func pollSend(_ context: inout Context, _ item: Input) -> PollSink<Failure> {
24 | return _base.pollSend(&context, item).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
25 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
26 | }
27 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:32:13: warning: will never be executed
29 | @inlinable
30 | public mutating func pollFlush(_ context: inout Context) -> PollSink<Failure> {
31 | return _base.pollFlush(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
32 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
33 | }
34 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:39:13: warning: will never be executed
36 | @inlinable
37 | public mutating func pollClose(_ context: inout Context) -> PollSink<Failure> {
38 | return _base.pollClose(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
39 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
40 | }
41 | }
[109/176] Compiling Futures Promise.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:13: warning: will never be executed
22 | @inlinable
23 | public mutating func pollSend(_ context: inout Context, _ item: Input) -> PollSink<Failure> {
24 | return _base.pollSend(&context, item).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
25 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
26 | }
27 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:32:13: warning: will never be executed
29 | @inlinable
30 | public mutating func pollFlush(_ context: inout Context) -> PollSink<Failure> {
31 | return _base.pollFlush(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
32 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
33 | }
34 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:39:13: warning: will never be executed
36 | @inlinable
37 | public mutating func pollClose(_ context: inout Context) -> PollSink<Failure> {
38 | return _base.pollClose(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
39 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
40 | }
41 | }
[110/176] Compiling Futures Result.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:13: warning: will never be executed
22 | @inlinable
23 | public mutating func pollSend(_ context: inout Context, _ item: Input) -> PollSink<Failure> {
24 | return _base.pollSend(&context, item).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
25 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
26 | }
27 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:32:13: warning: will never be executed
29 | @inlinable
30 | public mutating func pollFlush(_ context: inout Context) -> PollSink<Failure> {
31 | return _base.pollFlush(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
32 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
33 | }
34 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:39:13: warning: will never be executed
36 | @inlinable
37 | public mutating func pollClose(_ context: inout Context) -> PollSink<Failure> {
38 | return _base.pollClose(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
39 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
40 | }
41 | }
[111/176] Compiling Futures Sink.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:13: warning: will never be executed
22 | @inlinable
23 | public mutating func pollSend(_ context: inout Context, _ item: Input) -> PollSink<Failure> {
24 | return _base.pollSend(&context, item).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
25 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
26 | }
27 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:32:13: warning: will never be executed
29 | @inlinable
30 | public mutating func pollFlush(_ context: inout Context) -> PollSink<Failure> {
31 | return _base.pollFlush(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
32 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
33 | }
34 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:39:13: warning: will never be executed
36 | @inlinable
37 | public mutating func pollClose(_ context: inout Context) -> PollSink<Failure> {
38 | return _base.pollClose(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
39 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
40 | }
41 | }
[112/176] Compiling Futures AssertNoErrorSink.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:13: warning: will never be executed
22 | @inlinable
23 | public mutating func pollSend(_ context: inout Context, _ item: Input) -> PollSink<Failure> {
24 | return _base.pollSend(&context, item).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
25 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
26 | }
27 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:32:13: warning: will never be executed
29 | @inlinable
30 | public mutating func pollFlush(_ context: inout Context) -> PollSink<Failure> {
31 | return _base.pollFlush(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
32 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
33 | }
34 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:39:13: warning: will never be executed
36 | @inlinable
37 | public mutating func pollClose(_ context: inout Context) -> PollSink<Failure> {
38 | return _base.pollClose(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
39 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
40 | }
41 | }
[113/176] Compiling Futures BlockingSink.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:13: warning: will never be executed
22 | @inlinable
23 | public mutating func pollSend(_ context: inout Context, _ item: Input) -> PollSink<Failure> {
24 | return _base.pollSend(&context, item).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
25 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
26 | }
27 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:32:13: warning: will never be executed
29 | @inlinable
30 | public mutating func pollFlush(_ context: inout Context) -> PollSink<Failure> {
31 | return _base.pollFlush(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
32 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
33 | }
34 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:39:13: warning: will never be executed
36 | @inlinable
37 | public mutating func pollClose(_ context: inout Context) -> PollSink<Failure> {
38 | return _base.pollClose(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
39 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
40 | }
41 | }
[114/176] Compiling Futures BufferSink.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:13: warning: will never be executed
22 | @inlinable
23 | public mutating func pollSend(_ context: inout Context, _ item: Input) -> PollSink<Failure> {
24 | return _base.pollSend(&context, item).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
25 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
26 | }
27 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:32:13: warning: will never be executed
29 | @inlinable
30 | public mutating func pollFlush(_ context: inout Context) -> PollSink<Failure> {
31 | return _base.pollFlush(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
32 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
33 | }
34 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:39:13: warning: will never be executed
36 | @inlinable
37 | public mutating func pollClose(_ context: inout Context) -> PollSink<Failure> {
38 | return _base.pollClose(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
39 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
40 | }
41 | }
[115/176] Compiling Futures CollectSink.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:13: warning: will never be executed
22 | @inlinable
23 | public mutating func pollSend(_ context: inout Context, _ item: Input) -> PollSink<Failure> {
24 | return _base.pollSend(&context, item).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
25 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
26 | }
27 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:32:13: warning: will never be executed
29 | @inlinable
30 | public mutating func pollFlush(_ context: inout Context) -> PollSink<Failure> {
31 | return _base.pollFlush(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
32 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
33 | }
34 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:39:13: warning: will never be executed
36 | @inlinable
37 | public mutating func pollClose(_ context: inout Context) -> PollSink<Failure> {
38 | return _base.pollClose(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
39 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
40 | }
41 | }
[116/176] Compiling Futures FlatMapInputSink.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:13: warning: will never be executed
22 | @inlinable
23 | public mutating func pollSend(_ context: inout Context, _ item: Input) -> PollSink<Failure> {
24 | return _base.pollSend(&context, item).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
25 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
26 | }
27 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:32:13: warning: will never be executed
29 | @inlinable
30 | public mutating func pollFlush(_ context: inout Context) -> PollSink<Failure> {
31 | return _base.pollFlush(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
32 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
33 | }
34 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:39:13: warning: will never be executed
36 | @inlinable
37 | public mutating func pollClose(_ context: inout Context) -> PollSink<Failure> {
38 | return _base.pollClose(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
39 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
40 | }
41 | }
[117/176] Compiling Futures MapErrorSink.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:13: warning: will never be executed
22 | @inlinable
23 | public mutating func pollSend(_ context: inout Context, _ item: Input) -> PollSink<Failure> {
24 | return _base.pollSend(&context, item).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
25 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
26 | }
27 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:32:13: warning: will never be executed
29 | @inlinable
30 | public mutating func pollFlush(_ context: inout Context) -> PollSink<Failure> {
31 | return _base.pollFlush(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
32 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
33 | }
34 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:39:13: warning: will never be executed
36 | @inlinable
37 | public mutating func pollClose(_ context: inout Context) -> PollSink<Failure> {
38 | return _base.pollClose(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
39 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
40 | }
41 | }
[118/176] Compiling Futures MapInputSink.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:13: warning: will never be executed
22 | @inlinable
23 | public mutating func pollSend(_ context: inout Context, _ item: Input) -> PollSink<Failure> {
24 | return _base.pollSend(&context, item).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
25 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
26 | }
27 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:32:13: warning: will never be executed
29 | @inlinable
30 | public mutating func pollFlush(_ context: inout Context) -> PollSink<Failure> {
31 | return _base.pollFlush(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
32 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
33 | }
34 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:39:13: warning: will never be executed
36 | @inlinable
37 | public mutating func pollClose(_ context: inout Context) -> PollSink<Failure> {
38 | return _base.pollClose(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
39 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
40 | }
41 | }
[119/176] Compiling Futures SetFailureTypeSink.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:13: warning: will never be executed
22 | @inlinable
23 | public mutating func pollSend(_ context: inout Context, _ item: Input) -> PollSink<Failure> {
24 | return _base.pollSend(&context, item).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
25 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
26 | }
27 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:32:13: warning: will never be executed
29 | @inlinable
30 | public mutating func pollFlush(_ context: inout Context) -> PollSink<Failure> {
31 | return _base.pollFlush(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
32 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
33 | }
34 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:39:13: warning: will never be executed
36 | @inlinable
37 | public mutating func pollClose(_ context: inout Context) -> PollSink<Failure> {
38 | return _base.pollClose(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
39 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
40 | }
41 | }
[120/176] Compiling Futures SinkCloseFuture.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:13: warning: will never be executed
22 | @inlinable
23 | public mutating func pollSend(_ context: inout Context, _ item: Input) -> PollSink<Failure> {
24 | return _base.pollSend(&context, item).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
25 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
26 | }
27 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:32:13: warning: will never be executed
29 | @inlinable
30 | public mutating func pollFlush(_ context: inout Context) -> PollSink<Failure> {
31 | return _base.pollFlush(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
32 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
33 | }
34 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:39:13: warning: will never be executed
36 | @inlinable
37 | public mutating func pollClose(_ context: inout Context) -> PollSink<Failure> {
38 | return _base.pollClose(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
39 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
40 | }
41 | }
[121/176] Compiling Futures SinkFlushFuture.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:13: warning: will never be executed
22 | @inlinable
23 | public mutating func pollSend(_ context: inout Context, _ item: Input) -> PollSink<Failure> {
24 | return _base.pollSend(&context, item).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
25 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
26 | }
27 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:32:13: warning: will never be executed
29 | @inlinable
30 | public mutating func pollFlush(_ context: inout Context) -> PollSink<Failure> {
31 | return _base.pollFlush(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
32 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
33 | }
34 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:39:13: warning: will never be executed
36 | @inlinable
37 | public mutating func pollClose(_ context: inout Context) -> PollSink<Failure> {
38 | return _base.pollClose(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
39 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
40 | }
41 | }
[122/176] Compiling Futures SinkSendAllFuture.swift
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:25:13: warning: will never be executed
22 | @inlinable
23 | public mutating func pollSend(_ context: inout Context, _ item: Input) -> PollSink<Failure> {
24 | return _base.pollSend(&context, item).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
25 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
26 | }
27 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:32:13: warning: will never be executed
29 | @inlinable
30 | public mutating func pollFlush(_ context: inout Context) -> PollSink<Failure> {
31 | return _base.pollFlush(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
32 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
33 | }
34 | }
/host/spi-builder-workspace/Sources/Futures/Sink/SetFailureTypeSink.swift:39:13: warning: will never be executed
36 | @inlinable
37 | public mutating func pollClose(_ context: inout Context) -> PollSink<Failure> {
38 | return _base.pollClose(&context).mapError {
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
39 | .failure(.failure($0 as! Failure)) // swiftlint:disable:this force_cast
| `- warning: will never be executed
40 | }
41 | }
[123/176] Compiling Futures MatchOptionalFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[124/176] Compiling Futures MatchResultFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[125/176] Compiling Futures NeverFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[126/176] Compiling Futures PeekFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[127/176] Compiling Futures PollOnFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[128/176] Compiling Futures PrintFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[129/176] Compiling Futures ReadyFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[130/176] Compiling Futures ReferenceFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[131/176] Compiling Futures ReplaceErrorFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[132/176] Compiling Futures ReplaceOutputFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[133/176] Compiling Futures SelectAnyFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[134/176] Compiling Futures SelectFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[135/176] Compiling Futures SetFailureTypeFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[136/176] Compiling Futures ThenFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[137/176] Compiling Futures TryLazyFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[138/176] Compiling Futures TryMapFuture.swift
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[139/176] Compiling Futures AdaptiveQueue.swift
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[140/176] Compiling Futures CircularBuffer.swift
/host/spi-builder-workspace/Sources/Futures/Future/SetFailureTypeFuture.swift:35:27: warning: will never be executed
33 | _base = .init(base: base) {
34 | // swiftlint:disable:next force_cast
35 | $0.mapError { $0 as! Failure }
| | `- warning: will never be executed
| `- note: '$0' is of type 'Never' which cannot be constructed because it is an enum with no cases
36 | }
37 | }
[141/176] Compiling Futures FlattenStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[142/176] Compiling Futures ForEachStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[143/176] Compiling Futures GenerateStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[144/176] Compiling Futures HandleEventsStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[145/176] Compiling Futures JoinStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[146/176] Compiling Futures JustStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[147/176] Compiling Futures LatestStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[148/176] Compiling Futures LazyStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[149/176] Compiling Futures MapKeyPathStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[150/176] Compiling Futures MapResultStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[151/176] Compiling Futures MapStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[152/176] Compiling Futures MatchEitherStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[153/176] Compiling Futures MatchOptionalStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[154/176] Compiling Futures MatchResultStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[155/176] Compiling Futures MergeAllStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[156/176] Compiling Futures MergeStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[157/176] Compiling Futures MulticastStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[158/176] Compiling Futures NeverStream.swift
/host/spi-builder-workspace/Sources/Futures/Stream/FlattenStream.swift:17:20: error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
15 | public init(base: Base) {
16 | _base = .init(base: base) {
17 | $0.makeStream()
| `- error: cannot convert value of type 'Base.Output.StreamType' to closure result type 'Base.Output'
18 | }
19 | }
[159/176] Compiling Futures StreamContainsWhereFuture.swift
[160/176] Compiling Futures StreamFirstFuture.swift
[161/176] Compiling Futures StreamFirstWhereFuture.swift
[162/176] Compiling Futures StreamForwardFuture.swift
[163/176] Compiling Futures StreamFuture.swift
[164/176] Compiling Futures StreamIgnoreOutputFuture.swift
[165/176] Compiling Futures StreamLastFuture.swift
[166/176] Compiling Futures StreamLastWhereFuture.swift
[167/176] Compiling Futures StreamReduceFuture.swift
[168/176] Compiling Futures StreamReduceIntoFuture.swift
[169/176] Compiling Futures StreamReplayBuffer.swift
[170/176] Compiling Futures SwitchToLatestStream.swift
[171/176] Compiling Futures TryMapStream.swift
[172/176] Compiling Futures UnfoldStream.swift
[173/176] Compiling Futures YieldStream.swift
[174/176] Compiling Futures ZipStream.swift
[175/176] Compiling Futures Task.swift
[176/176] Compiling Futures Waker.swift
BUILD FAILURE 6.2 linux