Build Information
Successful build of Nimble with Swift 6.0 for Linux.
Swift 6 data race errors: 5
Build Command
bash -c docker run --rm -v "checkouts-4609320-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Build Log
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at f76b83c Merge branch 'main' into main
Cloned https://github.com/danielsaidi/Nimble.git
Revision (git rev-parse @):
f76b83c051fb3e6c120a33ebac200efba883065a
SUCCESS checkout https://github.com/danielsaidi/Nimble.git at main
========================================
Build
========================================
Selected platform: linux
Swift version: 6.0
Building package at path: $workDir
https://github.com/danielsaidi/Nimble.git
Running build ...
bash -c docker run --rm -v "checkouts-4609320-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Fetching https://github.com/mattgallagher/CwlCatchException.git
Fetching https://github.com/mattgallagher/CwlPreconditionTesting.git
[1/439] Fetching cwlcatchexception
[304/1686] Fetching cwlcatchexception, cwlpreconditiontesting
Fetched https://github.com/mattgallagher/CwlCatchException.git from cache (0.23s)
Fetched https://github.com/mattgallagher/CwlPreconditionTesting.git from cache (0.23s)
Computing version for https://github.com/mattgallagher/CwlPreconditionTesting.git
Computed https://github.com/mattgallagher/CwlPreconditionTesting.git at 2.1.0 (0.55s)
Computing version for https://github.com/mattgallagher/CwlCatchException.git
Computed https://github.com/mattgallagher/CwlCatchException.git at 2.0.0 (0.54s)
Creating working copy for https://github.com/mattgallagher/CwlPreconditionTesting.git
Working copy of https://github.com/mattgallagher/CwlPreconditionTesting.git resolved at 2.1.0
Creating working copy for https://github.com/mattgallagher/CwlCatchException.git
Working copy of https://github.com/mattgallagher/CwlCatchException.git resolved at 2.0.0
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/51] Emitting module Nimble
/host/spi-builder-workspace/Sources/Nimble/Adapters/AdapterProtocols.swift:13:12: warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 | /// @see AssertionHandler
13 | public var NimbleAssertionHandler: AssertionHandler = { () -> AssertionHandler in
| |- warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'NimbleAssertionHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'NimbleAssertionHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | // swiftlint:disable:previous identifier_name
15 | return isXCTestAvailable() ? NimbleXCTestHandler() : NimbleXCTestUnavailableHandler()
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:9:23: warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
7 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
| |- warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
11 | }
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:10:23: warning: static property 'pollInterval' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
| |- warning: static property 'pollInterval' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'pollInterval' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'pollInterval' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:72:13: warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
70 | }
71 |
72 | private let toEventuallyRequiresClosureError = FailureMessage(
| |- warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toEventuallyRequiresClosureError' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | stringValue: """
74 | expect(...).toEventually(...) requires an explicit closure (eg - expect { ... }.toEventually(...) )
/host/spi-builder-workspace/Sources/Nimble/FailureMessage.swift:6:14: note: class 'FailureMessage' does not conform to the 'Sendable' protocol
4 | ///
5 | /// This is shared state between Nimble and matchers that mutate this value.
6 | public class FailureMessage: NSObject {
| `- note: class 'FailureMessage' does not conform to the 'Sendable' protocol
7 | public var expected: String = "expected"
8 | public var actualValue: String? = "" // empty string -> use default; nil -> exclude
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:3:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension Int8: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public init(booleanLiteral value: Bool) {
5 | self = NSNumber(value: value).int8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:9:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
7 | }
8 |
9 | extension UInt8: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
10 | public init(booleanLiteral value: Bool) {
11 | self = NSNumber(value: value).uint8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:15:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
13 | }
14 |
15 | extension Int16: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | public init(booleanLiteral value: Bool) {
17 | self = NSNumber(value: value).int16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:21:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
19 | }
20 |
21 | extension UInt16: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
22 | public init(booleanLiteral value: Bool) {
23 | self = NSNumber(value: value).uint16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:27:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
25 | }
26 |
27 | extension Int32: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
28 | public init(booleanLiteral value: Bool) {
29 | self = NSNumber(value: value).int32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:33:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
31 | }
32 |
33 | extension UInt32: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
34 | public init(booleanLiteral value: Bool) {
35 | self = NSNumber(value: value).uint32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:39:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
37 | }
38 |
39 | extension Int64: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
40 | public init(booleanLiteral value: Bool) {
41 | self = NSNumber(value: value).int64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:45:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
43 | }
44 |
45 | extension UInt64: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
46 | public init(booleanLiteral value: Bool) {
47 | self = NSNumber(value: value).uint64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
49 | }
50 |
51 | extension Float: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
52 | public init(booleanLiteral value: Bool) {
53 | self = NSNumber(value: value).floatValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:57:1: warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
55 | }
56 |
57 | extension Double: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
58 | public init(booleanLiteral value: Bool) {
59 | self = NSNumber(value: value).doubleValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:63:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
61 | }
62 |
63 | extension Int: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
64 | public init(booleanLiteral value: Bool) {
65 | self = NSNumber(value: value).intValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:69:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
67 | }
68 |
69 | extension UInt: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
70 | public init(booleanLiteral value: Bool) {
71 | self = NSNumber(value: value).uintValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/MatcherProtocols.swift:50:13: warning: let 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | #if !os(WASI)
50 | private let dateFormatter: DateFormatter = {
| `- warning: let 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
51 | let formatter = DateFormatter()
52 | formatter.dateFormat = "yyyy-MM-dd HH:mm:ss.SSSS"
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
1 | open class DateFormatter : Formatter {
| `- note: class 'DateFormatter' does not conform to the 'Sendable' protocol
2 | override public init()
3 | required public init?(coder: NSCoder)
/host/spi-builder-workspace/Sources/Nimble/Matchers/MatcherProtocols.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
1 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
2 | // `CGFloat` is in Foundation (swift-corelibs-foundation) on Linux.
3 | #if canImport(Darwin)
:
48 |
49 | #if !os(WASI)
50 | private let dateFormatter: DateFormatter = {
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | let formatter = DateFormatter()
52 | formatter.dateFormat = "yyyy-MM-dd HH:mm:ss.SSSS"
[4/57] Compiling Nimble BeIdenticalTo.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:3:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension Int8: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public init(booleanLiteral value: Bool) {
5 | self = NSNumber(value: value).int8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:9:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
7 | }
8 |
9 | extension UInt8: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
10 | public init(booleanLiteral value: Bool) {
11 | self = NSNumber(value: value).uint8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:15:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
13 | }
14 |
15 | extension Int16: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | public init(booleanLiteral value: Bool) {
17 | self = NSNumber(value: value).int16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:21:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
19 | }
20 |
21 | extension UInt16: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
22 | public init(booleanLiteral value: Bool) {
23 | self = NSNumber(value: value).uint16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:27:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
25 | }
26 |
27 | extension Int32: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
28 | public init(booleanLiteral value: Bool) {
29 | self = NSNumber(value: value).int32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:33:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
31 | }
32 |
33 | extension UInt32: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
34 | public init(booleanLiteral value: Bool) {
35 | self = NSNumber(value: value).uint32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:39:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
37 | }
38 |
39 | extension Int64: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
40 | public init(booleanLiteral value: Bool) {
41 | self = NSNumber(value: value).int64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:45:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
43 | }
44 |
45 | extension UInt64: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
46 | public init(booleanLiteral value: Bool) {
47 | self = NSNumber(value: value).uint64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
49 | }
50 |
51 | extension Float: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
52 | public init(booleanLiteral value: Bool) {
53 | self = NSNumber(value: value).floatValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:57:1: warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
55 | }
56 |
57 | extension Double: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
58 | public init(booleanLiteral value: Bool) {
59 | self = NSNumber(value: value).doubleValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:63:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
61 | }
62 |
63 | extension Int: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
64 | public init(booleanLiteral value: Bool) {
65 | self = NSNumber(value: value).intValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:69:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
67 | }
68 |
69 | extension UInt: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
70 | public init(booleanLiteral value: Bool) {
71 | self = NSNumber(value: value).uintValue
[5/57] Compiling Nimble BeLessThan.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:3:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension Int8: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public init(booleanLiteral value: Bool) {
5 | self = NSNumber(value: value).int8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:9:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
7 | }
8 |
9 | extension UInt8: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
10 | public init(booleanLiteral value: Bool) {
11 | self = NSNumber(value: value).uint8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:15:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
13 | }
14 |
15 | extension Int16: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | public init(booleanLiteral value: Bool) {
17 | self = NSNumber(value: value).int16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:21:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
19 | }
20 |
21 | extension UInt16: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
22 | public init(booleanLiteral value: Bool) {
23 | self = NSNumber(value: value).uint16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:27:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
25 | }
26 |
27 | extension Int32: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
28 | public init(booleanLiteral value: Bool) {
29 | self = NSNumber(value: value).int32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:33:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
31 | }
32 |
33 | extension UInt32: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
34 | public init(booleanLiteral value: Bool) {
35 | self = NSNumber(value: value).uint32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:39:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
37 | }
38 |
39 | extension Int64: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
40 | public init(booleanLiteral value: Bool) {
41 | self = NSNumber(value: value).int64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:45:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
43 | }
44 |
45 | extension UInt64: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
46 | public init(booleanLiteral value: Bool) {
47 | self = NSNumber(value: value).uint64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
49 | }
50 |
51 | extension Float: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
52 | public init(booleanLiteral value: Bool) {
53 | self = NSNumber(value: value).floatValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:57:1: warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
55 | }
56 |
57 | extension Double: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
58 | public init(booleanLiteral value: Bool) {
59 | self = NSNumber(value: value).doubleValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:63:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
61 | }
62 |
63 | extension Int: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
64 | public init(booleanLiteral value: Bool) {
65 | self = NSNumber(value: value).intValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:69:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
67 | }
68 |
69 | extension UInt: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
70 | public init(booleanLiteral value: Bool) {
71 | self = NSNumber(value: value).uintValue
[6/57] Compiling Nimble BeLessThanOrEqual.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:3:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension Int8: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public init(booleanLiteral value: Bool) {
5 | self = NSNumber(value: value).int8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:9:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
7 | }
8 |
9 | extension UInt8: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
10 | public init(booleanLiteral value: Bool) {
11 | self = NSNumber(value: value).uint8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:15:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
13 | }
14 |
15 | extension Int16: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | public init(booleanLiteral value: Bool) {
17 | self = NSNumber(value: value).int16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:21:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
19 | }
20 |
21 | extension UInt16: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
22 | public init(booleanLiteral value: Bool) {
23 | self = NSNumber(value: value).uint16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:27:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
25 | }
26 |
27 | extension Int32: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
28 | public init(booleanLiteral value: Bool) {
29 | self = NSNumber(value: value).int32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:33:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
31 | }
32 |
33 | extension UInt32: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
34 | public init(booleanLiteral value: Bool) {
35 | self = NSNumber(value: value).uint32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:39:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
37 | }
38 |
39 | extension Int64: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
40 | public init(booleanLiteral value: Bool) {
41 | self = NSNumber(value: value).int64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:45:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
43 | }
44 |
45 | extension UInt64: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
46 | public init(booleanLiteral value: Bool) {
47 | self = NSNumber(value: value).uint64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
49 | }
50 |
51 | extension Float: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
52 | public init(booleanLiteral value: Bool) {
53 | self = NSNumber(value: value).floatValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:57:1: warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
55 | }
56 |
57 | extension Double: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
58 | public init(booleanLiteral value: Bool) {
59 | self = NSNumber(value: value).doubleValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:63:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
61 | }
62 |
63 | extension Int: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
64 | public init(booleanLiteral value: Bool) {
65 | self = NSNumber(value: value).intValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:69:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
67 | }
68 |
69 | extension UInt: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
70 | public init(booleanLiteral value: Bool) {
71 | self = NSNumber(value: value).uintValue
[7/57] Compiling Nimble BeLogical.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:3:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension Int8: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public init(booleanLiteral value: Bool) {
5 | self = NSNumber(value: value).int8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:9:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
7 | }
8 |
9 | extension UInt8: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
10 | public init(booleanLiteral value: Bool) {
11 | self = NSNumber(value: value).uint8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:15:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
13 | }
14 |
15 | extension Int16: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | public init(booleanLiteral value: Bool) {
17 | self = NSNumber(value: value).int16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:21:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
19 | }
20 |
21 | extension UInt16: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
22 | public init(booleanLiteral value: Bool) {
23 | self = NSNumber(value: value).uint16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:27:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
25 | }
26 |
27 | extension Int32: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
28 | public init(booleanLiteral value: Bool) {
29 | self = NSNumber(value: value).int32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:33:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
31 | }
32 |
33 | extension UInt32: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
34 | public init(booleanLiteral value: Bool) {
35 | self = NSNumber(value: value).uint32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:39:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
37 | }
38 |
39 | extension Int64: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
40 | public init(booleanLiteral value: Bool) {
41 | self = NSNumber(value: value).int64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:45:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
43 | }
44 |
45 | extension UInt64: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
46 | public init(booleanLiteral value: Bool) {
47 | self = NSNumber(value: value).uint64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
49 | }
50 |
51 | extension Float: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
52 | public init(booleanLiteral value: Bool) {
53 | self = NSNumber(value: value).floatValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:57:1: warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
55 | }
56 |
57 | extension Double: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
58 | public init(booleanLiteral value: Bool) {
59 | self = NSNumber(value: value).doubleValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:63:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
61 | }
62 |
63 | extension Int: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
64 | public init(booleanLiteral value: Bool) {
65 | self = NSNumber(value: value).intValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:69:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
67 | }
68 |
69 | extension UInt: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
70 | public init(booleanLiteral value: Bool) {
71 | self = NSNumber(value: value).uintValue
[8/57] Compiling Nimble BeNil.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:3:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension Int8: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public init(booleanLiteral value: Bool) {
5 | self = NSNumber(value: value).int8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:9:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
7 | }
8 |
9 | extension UInt8: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
10 | public init(booleanLiteral value: Bool) {
11 | self = NSNumber(value: value).uint8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:15:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
13 | }
14 |
15 | extension Int16: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | public init(booleanLiteral value: Bool) {
17 | self = NSNumber(value: value).int16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:21:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
19 | }
20 |
21 | extension UInt16: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
22 | public init(booleanLiteral value: Bool) {
23 | self = NSNumber(value: value).uint16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:27:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
25 | }
26 |
27 | extension Int32: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
28 | public init(booleanLiteral value: Bool) {
29 | self = NSNumber(value: value).int32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:33:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
31 | }
32 |
33 | extension UInt32: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
34 | public init(booleanLiteral value: Bool) {
35 | self = NSNumber(value: value).uint32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:39:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
37 | }
38 |
39 | extension Int64: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
40 | public init(booleanLiteral value: Bool) {
41 | self = NSNumber(value: value).int64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:45:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
43 | }
44 |
45 | extension UInt64: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
46 | public init(booleanLiteral value: Bool) {
47 | self = NSNumber(value: value).uint64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
49 | }
50 |
51 | extension Float: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
52 | public init(booleanLiteral value: Bool) {
53 | self = NSNumber(value: value).floatValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:57:1: warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
55 | }
56 |
57 | extension Double: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
58 | public init(booleanLiteral value: Bool) {
59 | self = NSNumber(value: value).doubleValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:63:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
61 | }
62 |
63 | extension Int: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
64 | public init(booleanLiteral value: Bool) {
65 | self = NSNumber(value: value).intValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:69:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
67 | }
68 |
69 | extension UInt: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
70 | public init(booleanLiteral value: Bool) {
71 | self = NSNumber(value: value).uintValue
[9/57] Compiling Nimble BeResult.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:3:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension Int8: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public init(booleanLiteral value: Bool) {
5 | self = NSNumber(value: value).int8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:9:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
7 | }
8 |
9 | extension UInt8: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
10 | public init(booleanLiteral value: Bool) {
11 | self = NSNumber(value: value).uint8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:15:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
13 | }
14 |
15 | extension Int16: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | public init(booleanLiteral value: Bool) {
17 | self = NSNumber(value: value).int16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:21:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
19 | }
20 |
21 | extension UInt16: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
22 | public init(booleanLiteral value: Bool) {
23 | self = NSNumber(value: value).uint16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:27:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
25 | }
26 |
27 | extension Int32: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
28 | public init(booleanLiteral value: Bool) {
29 | self = NSNumber(value: value).int32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:33:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
31 | }
32 |
33 | extension UInt32: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
34 | public init(booleanLiteral value: Bool) {
35 | self = NSNumber(value: value).uint32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:39:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
37 | }
38 |
39 | extension Int64: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
40 | public init(booleanLiteral value: Bool) {
41 | self = NSNumber(value: value).int64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:45:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
43 | }
44 |
45 | extension UInt64: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
46 | public init(booleanLiteral value: Bool) {
47 | self = NSNumber(value: value).uint64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
49 | }
50 |
51 | extension Float: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
52 | public init(booleanLiteral value: Bool) {
53 | self = NSNumber(value: value).floatValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:57:1: warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
55 | }
56 |
57 | extension Double: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
58 | public init(booleanLiteral value: Bool) {
59 | self = NSNumber(value: value).doubleValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:63:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
61 | }
62 |
63 | extension Int: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
64 | public init(booleanLiteral value: Bool) {
65 | self = NSNumber(value: value).intValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:69:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
67 | }
68 |
69 | extension UInt: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
70 | public init(booleanLiteral value: Bool) {
71 | self = NSNumber(value: value).uintValue
[10/57] Compiling Nimble BeVoid.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:3:1: warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension Int8: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public init(booleanLiteral value: Bool) {
5 | self = NSNumber(value: value).int8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:9:1: warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
7 | }
8 |
9 | extension UInt8: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt8' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
10 | public init(booleanLiteral value: Bool) {
11 | self = NSNumber(value: value).uint8Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:15:1: warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
13 | }
14 |
15 | extension Int16: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | public init(booleanLiteral value: Bool) {
17 | self = NSNumber(value: value).int16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:21:1: warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
19 | }
20 |
21 | extension UInt16: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt16' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
22 | public init(booleanLiteral value: Bool) {
23 | self = NSNumber(value: value).uint16Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:27:1: warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
25 | }
26 |
27 | extension Int32: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
28 | public init(booleanLiteral value: Bool) {
29 | self = NSNumber(value: value).int32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:33:1: warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
31 | }
32 |
33 | extension UInt32: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt32' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
34 | public init(booleanLiteral value: Bool) {
35 | self = NSNumber(value: value).uint32Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:39:1: warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
37 | }
38 |
39 | extension Int64: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
40 | public init(booleanLiteral value: Bool) {
41 | self = NSNumber(value: value).int64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:45:1: warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
43 | }
44 |
45 | extension UInt64: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt64' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
46 | public init(booleanLiteral value: Bool) {
47 | self = NSNumber(value: value).uint64Value
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:51:1: warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
49 | }
50 |
51 | extension Float: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Float' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
52 | public init(booleanLiteral value: Bool) {
53 | self = NSNumber(value: value).floatValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:57:1: warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
55 | }
56 |
57 | extension Double: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Double' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
58 | public init(booleanLiteral value: Bool) {
59 | self = NSNumber(value: value).doubleValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:63:1: warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
61 | }
62 |
63 | extension Int: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'Int' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
64 | public init(booleanLiteral value: Bool) {
65 | self = NSNumber(value: value).intValue
/host/spi-builder-workspace/Sources/Nimble/Matchers/BeLogical.swift:69:1: warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
67 | }
68 |
69 | extension UInt: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'UInt' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
70 | public init(booleanLiteral value: Bool) {
71 | self = NSNumber(value: value).uintValue
[11/57] Compiling Nimble Predicate.swift
[12/57] Compiling Nimble RaisesException.swift
[13/57] Compiling Nimble SatisfyAllOf.swift
[14/57] Compiling Nimble SatisfyAnyOf.swift
[15/57] Compiling Nimble ThrowAssertion.swift
[16/57] Compiling Nimble ThrowError.swift
[17/57] Compiling Nimble DSL+Wait.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:9:23: warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
7 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
| |- warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
11 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
60 | done(.none)
61 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
60 | done(.none)
61 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:60:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
58 | do {
59 | try action {
60 | done(.none)
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
61 | }
62 | } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:60:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
58 | do {
59 | try action {
60 | done(.none)
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
61 | }
62 | } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'done' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
60 | done(.none)
61 | }
[18/57] Compiling Nimble DSL.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:9:23: warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
7 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
| |- warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
11 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
60 | done(.none)
61 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
60 | done(.none)
61 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:60:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
58 | do {
59 | try action {
60 | done(.none)
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
61 | }
62 | } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:60:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
58 | do {
59 | try action {
60 | done(.none)
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
61 | }
62 | } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'done' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
60 | done(.none)
61 | }
[19/57] Compiling Nimble Expectation.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:9:23: warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
7 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
| |- warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
11 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
60 | done(.none)
61 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
60 | done(.none)
61 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:60:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
58 | do {
59 | try action {
60 | done(.none)
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
61 | }
62 | } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:60:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
58 | do {
59 | try action {
60 | done(.none)
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
61 | }
62 | } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'done' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
60 | done(.none)
61 | }
[20/57] Compiling Nimble ExpectationMessage.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:9:23: warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
7 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
| |- warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
11 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
60 | done(.none)
61 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
60 | done(.none)
61 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:60:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
58 | do {
59 | try action {
60 | done(.none)
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
61 | }
62 | } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:60:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
58 | do {
59 | try action {
60 | done(.none)
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
61 | }
62 | } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'done' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
60 | done(.none)
61 | }
[21/57] Compiling Nimble Expression.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:9:23: warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
7 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
| |- warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
11 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
60 | done(.none)
61 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
60 | done(.none)
61 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:60:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
58 | do {
59 | try action {
60 | done(.none)
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
61 | }
62 | } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:60:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
58 | do {
59 | try action {
60 | done(.none)
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
61 | }
62 | } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'done' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
60 | done(.none)
61 | }
[22/57] Compiling Nimble FailureMessage.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:9:23: warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
7 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
| |- warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
11 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
60 | done(.none)
61 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
60 | done(.none)
61 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:60:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
58 | do {
59 | try action {
60 | done(.none)
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
61 | }
62 | } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:60:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
58 | do {
59 | try action {
60 | done(.none)
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
61 | }
62 | } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'done' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
60 | done(.none)
61 | }
[23/57] Compiling Nimble AllPass.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:9:23: warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
7 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
| |- warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
11 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
60 | done(.none)
61 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: capture of 'action' with non-sendable type '(@escaping () -> Void) throws -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
60 | done(.none)
61 | }
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:60:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
58 | do {
59 | try action {
60 | done(.none)
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
61 | }
62 | } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:60:33: warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
58 | do {
59 | try action {
60 | done(.none)
| |- warning: capture of 'done' with non-sendable type '(ErrorResult) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
61 | }
62 | } catch let e {
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:53:29: warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
51 | let capture = NMBExceptionCapture(
52 | handler: ({ exception in
53 | done(.exception(exception))
| |- warning: sending 'done' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'done' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
54 | }),
55 | finally: ({ })
/host/spi-builder-workspace/Sources/Nimble/DSL+Wait.swift:59:33: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
57 | capture.tryBlock {
58 | do {
59 | try action {
| |- warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
60 | done(.none)
61 | }
[24/57] Compiling Nimble AdapterProtocols.swift
/host/spi-builder-workspace/Sources/Nimble/Adapters/AdapterProtocols.swift:13:12: warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 | /// @see AssertionHandler
13 | public var NimbleAssertionHandler: AssertionHandler = { () -> AssertionHandler in
| |- warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'NimbleAssertionHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'NimbleAssertionHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | // swiftlint:disable:previous identifier_name
15 | return isXCTestAvailable() ? NimbleXCTestHandler() : NimbleXCTestUnavailableHandler()
[25/57] Compiling Nimble AssertionDispatcher.swift
/host/spi-builder-workspace/Sources/Nimble/Adapters/AdapterProtocols.swift:13:12: warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 | /// @see AssertionHandler
13 | public var NimbleAssertionHandler: AssertionHandler = { () -> AssertionHandler in
| |- warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'NimbleAssertionHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'NimbleAssertionHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | // swiftlint:disable:previous identifier_name
15 | return isXCTestAvailable() ? NimbleXCTestHandler() : NimbleXCTestUnavailableHandler()
[26/57] Compiling Nimble AssertionRecorder.swift
/host/spi-builder-workspace/Sources/Nimble/Adapters/AdapterProtocols.swift:13:12: warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 | /// @see AssertionHandler
13 | public var NimbleAssertionHandler: AssertionHandler = { () -> AssertionHandler in
| |- warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'NimbleAssertionHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'NimbleAssertionHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | // swiftlint:disable:previous identifier_name
15 | return isXCTestAvailable() ? NimbleXCTestHandler() : NimbleXCTestUnavailableHandler()
[27/57] Compiling Nimble NMBExpectation.swift
/host/spi-builder-workspace/Sources/Nimble/Adapters/AdapterProtocols.swift:13:12: warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 | /// @see AssertionHandler
13 | public var NimbleAssertionHandler: AssertionHandler = { () -> AssertionHandler in
| |- warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'NimbleAssertionHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'NimbleAssertionHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | // swiftlint:disable:previous identifier_name
15 | return isXCTestAvailable() ? NimbleXCTestHandler() : NimbleXCTestUnavailableHandler()
[28/57] Compiling Nimble NimbleEnvironment.swift
/host/spi-builder-workspace/Sources/Nimble/Adapters/AdapterProtocols.swift:13:12: warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 | /// @see AssertionHandler
13 | public var NimbleAssertionHandler: AssertionHandler = { () -> AssertionHandler in
| |- warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'NimbleAssertionHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'NimbleAssertionHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | // swiftlint:disable:previous identifier_name
15 | return isXCTestAvailable() ? NimbleXCTestHandler() : NimbleXCTestUnavailableHandler()
[29/57] Compiling Nimble NimbleXCTestHandler.swift
/host/spi-builder-workspace/Sources/Nimble/Adapters/AdapterProtocols.swift:13:12: warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 | /// @see AssertionHandler
13 | public var NimbleAssertionHandler: AssertionHandler = { () -> AssertionHandler in
| |- warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'NimbleAssertionHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'NimbleAssertionHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | // swiftlint:disable:previous identifier_name
15 | return isXCTestAvailable() ? NimbleXCTestHandler() : NimbleXCTestUnavailableHandler()
[30/57] Compiling Nimble ExceptionCapture.swift
/host/spi-builder-workspace/Sources/Nimble/Adapters/AdapterProtocols.swift:13:12: warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 | ///
12 | /// @see AssertionHandler
13 | public var NimbleAssertionHandler: AssertionHandler = { () -> AssertionHandler in
| |- warning: var 'NimbleAssertionHandler' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'NimbleAssertionHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'NimbleAssertionHandler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | // swiftlint:disable:previous identifier_name
15 | return isXCTestAvailable() ? NimbleXCTestHandler() : NimbleXCTestUnavailableHandler()
[31/57] Compiling Nimble BeWithin.swift
[32/57] Compiling Nimble BeginWith.swift
[33/57] Compiling Nimble BeginWithPrefix.swift
[34/57] Compiling Nimble Contain.swift
[35/57] Compiling Nimble ContainElementSatisfying.swift
[36/57] Compiling Nimble ElementsEqual.swift
[37/57] Compiling Nimble EndWith.swift
[38/57] Compiling Nimble ToSucceed.swift
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:310:56: warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
308 | completeBlock()
309 | } else {
310 | DispatchQueue.main.async { completeBlock() }
| |- warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
311 | }
312 | } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:301:30: warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
299 | completionCount += 1
300 | if completionCount < 2 {
301 | func completeBlock() {
| `- warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
302 | if promise.resolveResult(.completed(result)) {
303 | CFRunLoopStop(CFRunLoopGetMain())
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:310:56: warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
308 | completeBlock()
309 | } else {
310 | DispatchQueue.main.async { completeBlock() }
| |- warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'completeBlock' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
311 | }
312 | } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:310:54: warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
308 | completeBlock()
309 | } else {
310 | DispatchQueue.main.async { completeBlock() }
| `- warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
311 | }
312 | } else {
[39/57] Compiling Nimble Await.swift
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:310:56: warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
308 | completeBlock()
309 | } else {
310 | DispatchQueue.main.async { completeBlock() }
| |- warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
311 | }
312 | } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:301:30: warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
299 | completionCount += 1
300 | if completionCount < 2 {
301 | func completeBlock() {
| `- warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
302 | if promise.resolveResult(.completed(result)) {
303 | CFRunLoopStop(CFRunLoopGetMain())
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:310:56: warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
308 | completeBlock()
309 | } else {
310 | DispatchQueue.main.async { completeBlock() }
| |- warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'completeBlock' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
311 | }
312 | } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:310:54: warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
308 | completeBlock()
309 | } else {
310 | DispatchQueue.main.async { completeBlock() }
| `- warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
311 | }
312 | } else {
[40/57] Compiling Nimble DispatchTimeInterval.swift
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:310:56: warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
308 | completeBlock()
309 | } else {
310 | DispatchQueue.main.async { completeBlock() }
| |- warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
311 | }
312 | } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:301:30: warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
299 | completionCount += 1
300 | if completionCount < 2 {
301 | func completeBlock() {
| `- warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
302 | if promise.resolveResult(.completed(result)) {
303 | CFRunLoopStop(CFRunLoopGetMain())
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:310:56: warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
308 | completeBlock()
309 | } else {
310 | DispatchQueue.main.async { completeBlock() }
| |- warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'completeBlock' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
311 | }
312 | } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:310:54: warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
308 | completeBlock()
309 | } else {
310 | DispatchQueue.main.async { completeBlock() }
| `- warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
311 | }
312 | } else {
[41/57] Compiling Nimble Errors.swift
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:310:56: warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
308 | completeBlock()
309 | } else {
310 | DispatchQueue.main.async { completeBlock() }
| |- warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
311 | }
312 | } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:301:30: warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
299 | completionCount += 1
300 | if completionCount < 2 {
301 | func completeBlock() {
| `- warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
302 | if promise.resolveResult(.completed(result)) {
303 | CFRunLoopStop(CFRunLoopGetMain())
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:310:56: warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
308 | completeBlock()
309 | } else {
310 | DispatchQueue.main.async { completeBlock() }
| |- warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'completeBlock' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
311 | }
312 | } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:310:54: warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
308 | completeBlock()
309 | } else {
310 | DispatchQueue.main.async { completeBlock() }
| `- warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
311 | }
312 | } else {
[42/57] Compiling Nimble SourceLocation.swift
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:310:56: warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
308 | completeBlock()
309 | } else {
310 | DispatchQueue.main.async { completeBlock() }
| |- warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
311 | }
312 | } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:301:30: warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
299 | completionCount += 1
300 | if completionCount < 2 {
301 | func completeBlock() {
| `- warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
302 | if promise.resolveResult(.completed(result)) {
303 | CFRunLoopStop(CFRunLoopGetMain())
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:310:56: warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
308 | completeBlock()
309 | } else {
310 | DispatchQueue.main.async { completeBlock() }
| |- warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'completeBlock' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
311 | }
312 | } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:310:54: warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
308 | completeBlock()
309 | } else {
310 | DispatchQueue.main.async { completeBlock() }
| `- warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
311 | }
312 | } else {
[43/57] Compiling Nimble Stringers.swift
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:310:56: warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
308 | completeBlock()
309 | } else {
310 | DispatchQueue.main.async { completeBlock() }
| |- warning: capture of 'completeBlock()' with non-sendable type '() -> ()' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
311 | }
312 | } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:301:30: warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
299 | completionCount += 1
300 | if completionCount < 2 {
301 | func completeBlock() {
| `- warning: concurrently-executed local function 'completeBlock()' must be marked as '@Sendable'; this is an error in the Swift 6 language mode
302 | if promise.resolveResult(.completed(result)) {
303 | CFRunLoopStop(CFRunLoopGetMain())
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:310:56: warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
308 | completeBlock()
309 | } else {
310 | DispatchQueue.main.async { completeBlock() }
| |- warning: sending 'completeBlock' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'completeBlock' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
311 | }
312 | } else {
/host/spi-builder-workspace/Sources/Nimble/Utils/Await.swift:310:54: warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
308 | completeBlock()
309 | } else {
310 | DispatchQueue.main.async { completeBlock() }
| `- warning: task or actor isolated value cannot be sent; this is an error in the Swift 6 language mode
311 | }
312 | } else {
[44/57] Compiling Nimble Async.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:9:23: warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
7 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
| |- warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
11 | }
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:10:23: warning: static property 'pollInterval' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
| |- warning: static property 'pollInterval' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'pollInterval' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'pollInterval' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:72:13: warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
70 | }
71 |
72 | private let toEventuallyRequiresClosureError = FailureMessage(
| |- warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toEventuallyRequiresClosureError' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | stringValue: """
74 | expect(...).toEventually(...) requires an explicit closure (eg - expect { ... }.toEventually(...) )
/host/spi-builder-workspace/Sources/Nimble/FailureMessage.swift:6:14: note: class 'FailureMessage' does not conform to the 'Sendable' protocol
4 | ///
5 | /// This is shared state between Nimble and matchers that mutate this value.
6 | public class FailureMessage: NSObject {
| `- note: class 'FailureMessage' does not conform to the 'Sendable' protocol
7 | public var expected: String = "expected"
8 | public var actualValue: String? = "" // empty string -> use default; nil -> exclude
[45/57] Compiling Nimble BeAKindOf.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:9:23: warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
7 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
| |- warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
11 | }
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:10:23: warning: static property 'pollInterval' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
| |- warning: static property 'pollInterval' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'pollInterval' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'pollInterval' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:72:13: warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
70 | }
71 |
72 | private let toEventuallyRequiresClosureError = FailureMessage(
| |- warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toEventuallyRequiresClosureError' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | stringValue: """
74 | expect(...).toEventually(...) requires an explicit closure (eg - expect { ... }.toEventually(...) )
/host/spi-builder-workspace/Sources/Nimble/FailureMessage.swift:6:14: note: class 'FailureMessage' does not conform to the 'Sendable' protocol
4 | ///
5 | /// This is shared state between Nimble and matchers that mutate this value.
6 | public class FailureMessage: NSObject {
| `- note: class 'FailureMessage' does not conform to the 'Sendable' protocol
7 | public var expected: String = "expected"
8 | public var actualValue: String? = "" // empty string -> use default; nil -> exclude
[46/57] Compiling Nimble BeAnInstanceOf.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:9:23: warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
7 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
| |- warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
11 | }
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:10:23: warning: static property 'pollInterval' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
| |- warning: static property 'pollInterval' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'pollInterval' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'pollInterval' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:72:13: warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
70 | }
71 |
72 | private let toEventuallyRequiresClosureError = FailureMessage(
| |- warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toEventuallyRequiresClosureError' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | stringValue: """
74 | expect(...).toEventually(...) requires an explicit closure (eg - expect { ... }.toEventually(...) )
/host/spi-builder-workspace/Sources/Nimble/FailureMessage.swift:6:14: note: class 'FailureMessage' does not conform to the 'Sendable' protocol
4 | ///
5 | /// This is shared state between Nimble and matchers that mutate this value.
6 | public class FailureMessage: NSObject {
| `- note: class 'FailureMessage' does not conform to the 'Sendable' protocol
7 | public var expected: String = "expected"
8 | public var actualValue: String? = "" // empty string -> use default; nil -> exclude
[47/57] Compiling Nimble BeCloseTo.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:9:23: warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
7 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
| |- warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
11 | }
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:10:23: warning: static property 'pollInterval' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
| |- warning: static property 'pollInterval' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'pollInterval' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'pollInterval' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:72:13: warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
70 | }
71 |
72 | private let toEventuallyRequiresClosureError = FailureMessage(
| |- warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toEventuallyRequiresClosureError' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | stringValue: """
74 | expect(...).toEventually(...) requires an explicit closure (eg - expect { ... }.toEventually(...) )
/host/spi-builder-workspace/Sources/Nimble/FailureMessage.swift:6:14: note: class 'FailureMessage' does not conform to the 'Sendable' protocol
4 | ///
5 | /// This is shared state between Nimble and matchers that mutate this value.
6 | public class FailureMessage: NSObject {
| `- note: class 'FailureMessage' does not conform to the 'Sendable' protocol
7 | public var expected: String = "expected"
8 | public var actualValue: String? = "" // empty string -> use default; nil -> exclude
[48/57] Compiling Nimble BeEmpty.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:9:23: warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
7 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
| |- warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
11 | }
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:10:23: warning: static property 'pollInterval' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
| |- warning: static property 'pollInterval' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'pollInterval' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'pollInterval' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:72:13: warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
70 | }
71 |
72 | private let toEventuallyRequiresClosureError = FailureMessage(
| |- warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toEventuallyRequiresClosureError' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | stringValue: """
74 | expect(...).toEventually(...) requires an explicit closure (eg - expect { ... }.toEventually(...) )
/host/spi-builder-workspace/Sources/Nimble/FailureMessage.swift:6:14: note: class 'FailureMessage' does not conform to the 'Sendable' protocol
4 | ///
5 | /// This is shared state between Nimble and matchers that mutate this value.
6 | public class FailureMessage: NSObject {
| `- note: class 'FailureMessage' does not conform to the 'Sendable' protocol
7 | public var expected: String = "expected"
8 | public var actualValue: String? = "" // empty string -> use default; nil -> exclude
[49/57] Compiling Nimble BeGreaterThan.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:9:23: warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
7 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
| |- warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
11 | }
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:10:23: warning: static property 'pollInterval' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
| |- warning: static property 'pollInterval' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'pollInterval' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'pollInterval' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:72:13: warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
70 | }
71 |
72 | private let toEventuallyRequiresClosureError = FailureMessage(
| |- warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toEventuallyRequiresClosureError' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | stringValue: """
74 | expect(...).toEventually(...) requires an explicit closure (eg - expect { ... }.toEventually(...) )
/host/spi-builder-workspace/Sources/Nimble/FailureMessage.swift:6:14: note: class 'FailureMessage' does not conform to the 'Sendable' protocol
4 | ///
5 | /// This is shared state between Nimble and matchers that mutate this value.
6 | public class FailureMessage: NSObject {
| `- note: class 'FailureMessage' does not conform to the 'Sendable' protocol
7 | public var expected: String = "expected"
8 | public var actualValue: String? = "" // empty string -> use default; nil -> exclude
[50/57] Compiling Nimble BeGreaterThanOrEqualTo.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:9:23: warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
7 | /// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01.
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
| |- warning: static property 'timeout' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'timeout' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'timeout' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
11 | }
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:10:23: warning: static property 'pollInterval' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
8 | public struct AsyncDefaults {
9 | public static var timeout: DispatchTimeInterval = .seconds(1)
10 | public static var pollInterval: DispatchTimeInterval = .milliseconds(10)
| |- warning: static property 'pollInterval' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'pollInterval' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'pollInterval' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
/host/spi-builder-workspace/Sources/Nimble/Matchers/Async.swift:72:13: warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
70 | }
71 |
72 | private let toEventuallyRequiresClosureError = FailureMessage(
| |- warning: let 'toEventuallyRequiresClosureError' is not concurrency-safe because non-'Sendable' type 'FailureMessage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toEventuallyRequiresClosureError' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | stringValue: """
74 | expect(...).toEventually(...) requires an explicit closure (eg - expect { ... }.toEventually(...) )
/host/spi-builder-workspace/Sources/Nimble/FailureMessage.swift:6:14: note: class 'FailureMessage' does not conform to the 'Sendable' protocol
4 | ///
5 | /// This is shared state between Nimble and matchers that mutate this value.
6 | public class FailureMessage: NSObject {
| `- note: class 'FailureMessage' does not conform to the 'Sendable' protocol
7 | public var expected: String = "expected"
8 | public var actualValue: String? = "" // empty string -> use default; nil -> exclude
[51/57] Compiling Nimble Equal+Tuple.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/MatcherProtocols.swift:50:13: warning: let 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | #if !os(WASI)
50 | private let dateFormatter: DateFormatter = {
| `- warning: let 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
51 | let formatter = DateFormatter()
52 | formatter.dateFormat = "yyyy-MM-dd HH:mm:ss.SSSS"
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
1 | open class DateFormatter : Formatter {
| `- note: class 'DateFormatter' does not conform to the 'Sendable' protocol
2 | override public init()
3 | required public init?(coder: NSCoder)
/host/spi-builder-workspace/Sources/Nimble/Matchers/MatcherProtocols.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
1 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
2 | // `CGFloat` is in Foundation (swift-corelibs-foundation) on Linux.
3 | #if canImport(Darwin)
:
48 |
49 | #if !os(WASI)
50 | private let dateFormatter: DateFormatter = {
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | let formatter = DateFormatter()
52 | formatter.dateFormat = "yyyy-MM-dd HH:mm:ss.SSSS"
[52/57] Compiling Nimble Equal.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/MatcherProtocols.swift:50:13: warning: let 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | #if !os(WASI)
50 | private let dateFormatter: DateFormatter = {
| `- warning: let 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
51 | let formatter = DateFormatter()
52 | formatter.dateFormat = "yyyy-MM-dd HH:mm:ss.SSSS"
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
1 | open class DateFormatter : Formatter {
| `- note: class 'DateFormatter' does not conform to the 'Sendable' protocol
2 | override public init()
3 | required public init?(coder: NSCoder)
/host/spi-builder-workspace/Sources/Nimble/Matchers/MatcherProtocols.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
1 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
2 | // `CGFloat` is in Foundation (swift-corelibs-foundation) on Linux.
3 | #if canImport(Darwin)
:
48 |
49 | #if !os(WASI)
50 | private let dateFormatter: DateFormatter = {
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | let formatter = DateFormatter()
52 | formatter.dateFormat = "yyyy-MM-dd HH:mm:ss.SSSS"
[53/57] Compiling Nimble HaveCount.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/MatcherProtocols.swift:50:13: warning: let 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | #if !os(WASI)
50 | private let dateFormatter: DateFormatter = {
| `- warning: let 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
51 | let formatter = DateFormatter()
52 | formatter.dateFormat = "yyyy-MM-dd HH:mm:ss.SSSS"
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
1 | open class DateFormatter : Formatter {
| `- note: class 'DateFormatter' does not conform to the 'Sendable' protocol
2 | override public init()
3 | required public init?(coder: NSCoder)
/host/spi-builder-workspace/Sources/Nimble/Matchers/MatcherProtocols.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
1 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
2 | // `CGFloat` is in Foundation (swift-corelibs-foundation) on Linux.
3 | #if canImport(Darwin)
:
48 |
49 | #if !os(WASI)
50 | private let dateFormatter: DateFormatter = {
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | let formatter = DateFormatter()
52 | formatter.dateFormat = "yyyy-MM-dd HH:mm:ss.SSSS"
[54/57] Compiling Nimble Match.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/MatcherProtocols.swift:50:13: warning: let 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | #if !os(WASI)
50 | private let dateFormatter: DateFormatter = {
| `- warning: let 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
51 | let formatter = DateFormatter()
52 | formatter.dateFormat = "yyyy-MM-dd HH:mm:ss.SSSS"
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
1 | open class DateFormatter : Formatter {
| `- note: class 'DateFormatter' does not conform to the 'Sendable' protocol
2 | override public init()
3 | required public init?(coder: NSCoder)
/host/spi-builder-workspace/Sources/Nimble/Matchers/MatcherProtocols.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
1 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
2 | // `CGFloat` is in Foundation (swift-corelibs-foundation) on Linux.
3 | #if canImport(Darwin)
:
48 |
49 | #if !os(WASI)
50 | private let dateFormatter: DateFormatter = {
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | let formatter = DateFormatter()
52 | formatter.dateFormat = "yyyy-MM-dd HH:mm:ss.SSSS"
[55/57] Compiling Nimble MatchError.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/MatcherProtocols.swift:50:13: warning: let 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | #if !os(WASI)
50 | private let dateFormatter: DateFormatter = {
| `- warning: let 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
51 | let formatter = DateFormatter()
52 | formatter.dateFormat = "yyyy-MM-dd HH:mm:ss.SSSS"
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
1 | open class DateFormatter : Formatter {
| `- note: class 'DateFormatter' does not conform to the 'Sendable' protocol
2 | override public init()
3 | required public init?(coder: NSCoder)
/host/spi-builder-workspace/Sources/Nimble/Matchers/MatcherProtocols.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
1 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
2 | // `CGFloat` is in Foundation (swift-corelibs-foundation) on Linux.
3 | #if canImport(Darwin)
:
48 |
49 | #if !os(WASI)
50 | private let dateFormatter: DateFormatter = {
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | let formatter = DateFormatter()
52 | formatter.dateFormat = "yyyy-MM-dd HH:mm:ss.SSSS"
[56/57] Compiling Nimble MatcherProtocols.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/MatcherProtocols.swift:50:13: warning: let 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | #if !os(WASI)
50 | private let dateFormatter: DateFormatter = {
| `- warning: let 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
51 | let formatter = DateFormatter()
52 | formatter.dateFormat = "yyyy-MM-dd HH:mm:ss.SSSS"
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
1 | open class DateFormatter : Formatter {
| `- note: class 'DateFormatter' does not conform to the 'Sendable' protocol
2 | override public init()
3 | required public init?(coder: NSCoder)
/host/spi-builder-workspace/Sources/Nimble/Matchers/MatcherProtocols.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
1 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
2 | // `CGFloat` is in Foundation (swift-corelibs-foundation) on Linux.
3 | #if canImport(Darwin)
:
48 |
49 | #if !os(WASI)
50 | private let dateFormatter: DateFormatter = {
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | let formatter = DateFormatter()
52 | formatter.dateFormat = "yyyy-MM-dd HH:mm:ss.SSSS"
[57/57] Compiling Nimble PostNotification.swift
/host/spi-builder-workspace/Sources/Nimble/Matchers/MatcherProtocols.swift:50:13: warning: let 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | #if !os(WASI)
50 | private let dateFormatter: DateFormatter = {
| `- warning: let 'dateFormatter' is not concurrency-safe because non-'Sendable' type 'DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
51 | let formatter = DateFormatter()
52 | formatter.dateFormat = "yyyy-MM-dd HH:mm:ss.SSSS"
Foundation.DateFormatter:1:12: note: class 'DateFormatter' does not conform to the 'Sendable' protocol
1 | open class DateFormatter : Formatter {
| `- note: class 'DateFormatter' does not conform to the 'Sendable' protocol
2 | override public init()
3 | required public init?(coder: NSCoder)
/host/spi-builder-workspace/Sources/Nimble/Matchers/MatcherProtocols.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
1 | import Foundation
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
2 | // `CGFloat` is in Foundation (swift-corelibs-foundation) on Linux.
3 | #if canImport(Darwin)
:
48 |
49 | #if !os(WASI)
50 | private let dateFormatter: DateFormatter = {
| |- note: annotate 'dateFormatter' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | let formatter = DateFormatter()
52 | formatter.dateFormat = "yyyy-MM-dd HH:mm:ss.SSSS"
Build complete! (19.28s)
Build complete.
{
"dependencies" : [
{
"identity" : "cwlpreconditiontesting",
"requirement" : {
"range" : [
{
"lower_bound" : "2.1.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/mattgallagher/CwlPreconditionTesting.git"
}
],
"manifest_display_name" : "Nimble",
"name" : "Nimble",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.10"
},
{
"name" : "ios",
"version" : "9.0"
},
{
"name" : "tvos",
"version" : "9.0"
}
],
"products" : [
{
"name" : "Nimble",
"targets" : [
"Nimble"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "NimbleTests",
"module_type" : "SwiftTarget",
"name" : "NimbleTests",
"path" : "Tests/NimbleTests",
"sources" : [
"AsynchronousTest.swift",
"DSLTest.swift",
"Helpers/AlwaysFailMatcher.swift",
"Helpers/ObjectWithLazyProperty.swift",
"Helpers/utils.swift",
"LinuxSupport.swift",
"Matchers/AllPassTest.swift",
"Matchers/BeAKindOfTest.swift",
"Matchers/BeAnInstanceOfTest.swift",
"Matchers/BeCloseToTest.swift",
"Matchers/BeEmptyTest.swift",
"Matchers/BeGreaterThanOrEqualToTest.swift",
"Matchers/BeGreaterThanTest.swift",
"Matchers/BeIdenticalToObjectTest.swift",
"Matchers/BeIdenticalToTest.swift",
"Matchers/BeLessThanOrEqualToTest.swift",
"Matchers/BeLessThanTest.swift",
"Matchers/BeLogicalTest.swift",
"Matchers/BeNilTest.swift",
"Matchers/BeResultTest.swift",
"Matchers/BeVoidTest.swift",
"Matchers/BeWithinTest.swift",
"Matchers/BeginWithPrefixTest.swift",
"Matchers/BeginWithTest.swift",
"Matchers/ContainElementSatisfyingTest.swift",
"Matchers/ContainTest.swift",
"Matchers/ElementsEqualTest.swift",
"Matchers/EndWithTest.swift",
"Matchers/EqualTest.swift",
"Matchers/HaveCountTest.swift",
"Matchers/MatchErrorTest.swift",
"Matchers/MatchTest.swift",
"Matchers/PostNotificationTest.swift",
"Matchers/RaisesExceptionTest.swift",
"Matchers/SatisfyAllOfTest.swift",
"Matchers/SatisfyAnyOfTest.swift",
"Matchers/ThrowAssertionTest.swift",
"Matchers/ThrowErrorTest.swift",
"Matchers/ToSucceedTest.swift",
"PredicateTest.swift",
"SynchronousTest.swift",
"UserDescriptionTest.swift"
],
"target_dependencies" : [
"Nimble"
],
"type" : "test"
},
{
"c99name" : "Nimble",
"module_type" : "SwiftTarget",
"name" : "Nimble",
"path" : "Sources/Nimble",
"product_dependencies" : [
"CwlPreconditionTesting",
"CwlPosixPreconditionTesting"
],
"product_memberships" : [
"Nimble"
],
"sources" : [
"Adapters/AdapterProtocols.swift",
"Adapters/AssertionDispatcher.swift",
"Adapters/AssertionRecorder.swift",
"Adapters/NMBExpectation.swift",
"Adapters/NimbleEnvironment.swift",
"Adapters/NimbleXCTestHandler.swift",
"Adapters/NonObjectiveC/ExceptionCapture.swift",
"DSL+Wait.swift",
"DSL.swift",
"Expectation.swift",
"ExpectationMessage.swift",
"Expression.swift",
"FailureMessage.swift",
"Matchers/AllPass.swift",
"Matchers/Async.swift",
"Matchers/BeAKindOf.swift",
"Matchers/BeAnInstanceOf.swift",
"Matchers/BeCloseTo.swift",
"Matchers/BeEmpty.swift",
"Matchers/BeGreaterThan.swift",
"Matchers/BeGreaterThanOrEqualTo.swift",
"Matchers/BeIdenticalTo.swift",
"Matchers/BeLessThan.swift",
"Matchers/BeLessThanOrEqual.swift",
"Matchers/BeLogical.swift",
"Matchers/BeNil.swift",
"Matchers/BeResult.swift",
"Matchers/BeVoid.swift",
"Matchers/BeWithin.swift",
"Matchers/BeginWith.swift",
"Matchers/BeginWithPrefix.swift",
"Matchers/Contain.swift",
"Matchers/ContainElementSatisfying.swift",
"Matchers/ElementsEqual.swift",
"Matchers/EndWith.swift",
"Matchers/Equal+Tuple.swift",
"Matchers/Equal.swift",
"Matchers/HaveCount.swift",
"Matchers/Match.swift",
"Matchers/MatchError.swift",
"Matchers/MatcherProtocols.swift",
"Matchers/PostNotification.swift",
"Matchers/Predicate.swift",
"Matchers/RaisesException.swift",
"Matchers/SatisfyAllOf.swift",
"Matchers/SatisfyAnyOf.swift",
"Matchers/ThrowAssertion.swift",
"Matchers/ThrowError.swift",
"Matchers/ToSucceed.swift",
"Utils/Await.swift",
"Utils/DispatchTimeInterval.swift",
"Utils/Errors.swift",
"Utils/SourceLocation.swift",
"Utils/Stringers.swift"
],
"type" : "library"
}
],
"tools_version" : "5.4"
}
Done.