Build Information
Failed to build FluentExtensions, reference master (e7e995), with Swift 6.1 for Android on 27 Sep 2025 00:08:09 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1Build Log
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 | open var refreshing: Bool = false
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
| `- error: type of expression is ambiguous without a type annotation
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 | }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 | }
36 |
37 | @objc open func refreshTimerFired() {
| `- error: Objective-C interoperability is disabled
38 | if !needsRefresh() {
39 | refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 | //Override to add network polling implementation. Call super to maintain state
48 | @objc open func refresh() {
| `- error: Objective-C interoperability is disabled
49 | self.refreshing = true
50 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 | open var refreshing: Bool = false
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
| `- error: type of expression is ambiguous without a type annotation
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 | }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 | }
36 |
37 | @objc open func refreshTimerFired() {
| `- error: Objective-C interoperability is disabled
38 | if !needsRefresh() {
39 | refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 | //Override to add network polling implementation. Call super to maintain state
48 | @objc open func refresh() {
| `- error: Objective-C interoperability is disabled
49 | self.refreshing = true
50 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 | open var refreshing: Bool = false
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
| `- error: type of expression is ambiguous without a type annotation
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 | }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 | }
36 |
37 | @objc open func refreshTimerFired() {
| `- error: Objective-C interoperability is disabled
38 | if !needsRefresh() {
39 | refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 | //Override to add network polling implementation. Call super to maintain state
48 | @objc open func refresh() {
| `- error: Objective-C interoperability is disabled
49 | self.refreshing = true
50 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 | open var refreshing: Bool = false
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
| `- error: type of expression is ambiguous without a type annotation
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 | }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 | }
36 |
37 | @objc open func refreshTimerFired() {
| `- error: Objective-C interoperability is disabled
38 | if !needsRefresh() {
39 | refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 | //Override to add network polling implementation. Call super to maintain state
48 | @objc open func refresh() {
| `- error: Objective-C interoperability is disabled
49 | self.refreshing = true
50 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 | open var refreshing: Bool = false
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
| `- error: type of expression is ambiguous without a type annotation
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 | }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 | }
36 |
37 | @objc open func refreshTimerFired() {
| `- error: Objective-C interoperability is disabled
38 | if !needsRefresh() {
39 | refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 | //Override to add network polling implementation. Call super to maintain state
48 | @objc open func refresh() {
| `- error: Objective-C interoperability is disabled
49 | self.refreshing = true
50 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 | open var refreshing: Bool = false
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
| `- error: type of expression is ambiguous without a type annotation
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 | }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 | }
36 |
37 | @objc open func refreshTimerFired() {
| `- error: Objective-C interoperability is disabled
38 | if !needsRefresh() {
39 | refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 | //Override to add network polling implementation. Call super to maintain state
48 | @objc open func refresh() {
| `- error: Objective-C interoperability is disabled
49 | self.refreshing = true
50 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 | open var refreshing: Bool = false
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
| `- error: type of expression is ambiguous without a type annotation
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 | }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 | }
36 |
37 | @objc open func refreshTimerFired() {
| `- error: Objective-C interoperability is disabled
38 | if !needsRefresh() {
39 | refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 | //Override to add network polling implementation. Call super to maintain state
48 | @objc open func refresh() {
| `- error: Objective-C interoperability is disabled
49 | self.refreshing = true
50 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 | open var refreshing: Bool = false
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
| `- error: type of expression is ambiguous without a type annotation
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 | }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 | }
36 |
37 | @objc open func refreshTimerFired() {
| `- error: Objective-C interoperability is disabled
38 | if !needsRefresh() {
39 | refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 | //Override to add network polling implementation. Call super to maintain state
48 | @objc open func refresh() {
| `- error: Objective-C interoperability is disabled
49 | self.refreshing = true
50 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 | open var refreshing: Bool = false
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
| `- error: type of expression is ambiguous without a type annotation
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 | }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 | }
36 |
37 | @objc open func refreshTimerFired() {
| `- error: Objective-C interoperability is disabled
38 | if !needsRefresh() {
39 | refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 | //Override to add network polling implementation. Call super to maintain state
48 | @objc open func refresh() {
| `- error: Objective-C interoperability is disabled
49 | self.refreshing = true
50 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 | open var refreshing: Bool = false
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
| `- error: type of expression is ambiguous without a type annotation
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 | }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 | }
36 |
37 | @objc open func refreshTimerFired() {
| `- error: Objective-C interoperability is disabled
38 | if !needsRefresh() {
39 | refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 | //Override to add network polling implementation. Call super to maintain state
48 | @objc open func refresh() {
| `- error: Objective-C interoperability is disabled
49 | self.refreshing = true
50 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 | open var refreshing: Bool = false
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
| `- error: type of expression is ambiguous without a type annotation
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 | }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 | }
36 |
37 | @objc open func refreshTimerFired() {
| `- error: Objective-C interoperability is disabled
38 | if !needsRefresh() {
39 | refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 | //Override to add network polling implementation. Call super to maintain state
48 | @objc open func refresh() {
| `- error: Objective-C interoperability is disabled
49 | self.refreshing = true
50 | }
[127/1041] Compiling Runtime TypeDescriptor.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 | open var refreshing: Bool = false
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
| `- error: type of expression is ambiguous without a type annotation
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 | }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 | }
36 |
37 | @objc open func refreshTimerFired() {
| `- error: Objective-C interoperability is disabled
38 | if !needsRefresh() {
39 | refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 | //Override to add network polling implementation. Call super to maintain state
48 | @objc open func refresh() {
| `- error: Objective-C interoperability is disabled
49 | self.refreshing = true
50 | }
[128/1041] Compiling Runtime ValueWitnessTable.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 | open var refreshing: Bool = false
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
| `- error: type of expression is ambiguous without a type annotation
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 | }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 | }
36 |
37 | @objc open func refreshTimerFired() {
| `- error: Objective-C interoperability is disabled
38 | if !needsRefresh() {
39 | refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 | //Override to add network polling implementation. Call super to maintain state
48 | @objc open func refresh() {
| `- error: Objective-C interoperability is disabled
49 | self.refreshing = true
50 | }
[129/1041] Compiling Runtime ClassMetadata.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 | open var refreshing: Bool = false
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
| `- error: type of expression is ambiguous without a type annotation
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 | }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 | }
36 |
37 | @objc open func refreshTimerFired() {
| `- error: Objective-C interoperability is disabled
38 | if !needsRefresh() {
39 | refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 | //Override to add network polling implementation. Call super to maintain state
48 | @objc open func refresh() {
| `- error: Objective-C interoperability is disabled
49 | self.refreshing = true
50 | }
[130/1041] Compiling Runtime EnumMetadata.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 | open var refreshing: Bool = false
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
| `- error: type of expression is ambiguous without a type annotation
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 | }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 | }
36 |
37 | @objc open func refreshTimerFired() {
| `- error: Objective-C interoperability is disabled
38 | if !needsRefresh() {
39 | refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 | //Override to add network polling implementation. Call super to maintain state
48 | @objc open func refresh() {
| `- error: Objective-C interoperability is disabled
49 | self.refreshing = true
50 | }
[131/1041] Compiling Runtime FuntionMetadata.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 | open var refreshing: Bool = false
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
| `- error: type of expression is ambiguous without a type annotation
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 | }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 | }
36 |
37 | @objc open func refreshTimerFired() {
| `- error: Objective-C interoperability is disabled
38 | if !needsRefresh() {
39 | refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 | //Override to add network polling implementation. Call super to maintain state
48 | @objc open func refresh() {
| `- error: Objective-C interoperability is disabled
49 | self.refreshing = true
50 | }
[132/1041] Compiling Runtime Metadata.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:32: error: cannot find 'NSMapTable' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:25:93: error: cannot find 'NSPointerFunctions' in scope
23 | public typealias EventHandler = (T) -> Void
24 | public var notificationsEnabled: Bool = true
25 | public var subscriptions = NSMapTable<AnyObject, TypedEventSubscription<T>>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
26 |
27 | public func notifySubscribers(ofValueUpdate updatedValue: T) {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:32: error: cannot find 'NSMapTable' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSMapTable' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Event.swift:65:85: error: cannot find 'NSPointerFunctions' in scope
63 | public typealias EventHandler = VoidClosure
64 | public var notificationsEnabled: Bool = true
65 | public var subscriptions = NSMapTable<AnyObject, EventSubscription>(keyOptions: NSPointerFunctions.Options.weakMemory)
| `- error: cannot find 'NSPointerFunctions' in scope
66 |
67 | public func notifySubscribersOfOccurrence() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:18:98: error: '#selector' can only be used with the Objective-C runtime
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
| `- error: '#selector' can only be used with the Objective-C runtime
19 | }()
20 | public init() {
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:17:34: error: type of expression is ambiguous without a type annotation
15 | open var refreshing: Bool = false
16 | open var refreshFrequency: Double = 60
17 | open lazy var timer: Timer = {
| `- error: type of expression is ambiguous without a type annotation
18 | return Timer.scheduledTimer(timeInterval: self.refreshFrequency, target: self, selector: #selector(Poller.refreshTimerFired), userInfo: nil, repeats: true)
19 | }()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:37:6: error: Objective-C interoperability is disabled
35 | }
36 |
37 | @objc open func refreshTimerFired() {
| `- error: Objective-C interoperability is disabled
38 | if !needsRefresh() {
39 | refresh()
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Classes/Poller.swift:48:6: error: Objective-C interoperability is disabled
46 |
47 | //Override to add network polling implementation. Call super to maintain state
48 | @objc open func refresh() {
| `- error: Objective-C interoperability is disabled
49 | self.refreshing = true
50 | }
[138/1048] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[143/1049] Compiling Logging LogHandler.swift
[144/1049] Compiling Logging Locks.swift
[145/1049] Compiling Logging Logging.swift
[152/1050] Emitting module Runtime
[187/1065] Compiling Swiftest KeyPathValuePairInitializable.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no exact matches in call to global function 'pow'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| |- error: no exact matches in call to global function 'pow'
| |- note: candidate has partially matching parameter list (CGFloat, CGFloat)
| `- note: candidate has partially matching parameter list (Decimal, Int)
25 | }
26 |
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: candidate has partially matching parameter list (Double, Double)
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate has partially matching parameter list (Double, Double)
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no 'pow' candidates produce the expected contextual result type 'Float'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
25 | }
26 |
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:21:5: error: cannot find 'objc_sync_enter' in scope
19 | ///Emoji read/write locking because it is too good to pass up
20 | public func 🔒(_ object: AnyObject, closure: () -> Void) {
21 | objc_sync_enter(object)
| `- error: cannot find 'objc_sync_enter' in scope
22 | closure()
23 | objc_sync_exit(object)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:23:5: error: cannot find 'objc_sync_exit' in scope
21 | objc_sync_enter(object)
22 | closure()
23 | objc_sync_exit(object)
| `- error: cannot find 'objc_sync_exit' in scope
24 | }
25 |
[188/1065] Compiling Swiftest ExponentiationOperator.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no exact matches in call to global function 'pow'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| |- error: no exact matches in call to global function 'pow'
| |- note: candidate has partially matching parameter list (CGFloat, CGFloat)
| `- note: candidate has partially matching parameter list (Decimal, Int)
25 | }
26 |
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: candidate has partially matching parameter list (Double, Double)
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate has partially matching parameter list (Double, Double)
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no 'pow' candidates produce the expected contextual result type 'Float'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
25 | }
26 |
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:21:5: error: cannot find 'objc_sync_enter' in scope
19 | ///Emoji read/write locking because it is too good to pass up
20 | public func 🔒(_ object: AnyObject, closure: () -> Void) {
21 | objc_sync_enter(object)
| `- error: cannot find 'objc_sync_enter' in scope
22 | closure()
23 | objc_sync_exit(object)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:23:5: error: cannot find 'objc_sync_exit' in scope
21 | objc_sync_enter(object)
22 | closure()
23 | objc_sync_exit(object)
| `- error: cannot find 'objc_sync_exit' in scope
24 | }
25 |
[189/1065] Compiling Swiftest PlusMinusOperator.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no exact matches in call to global function 'pow'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| |- error: no exact matches in call to global function 'pow'
| |- note: candidate has partially matching parameter list (CGFloat, CGFloat)
| `- note: candidate has partially matching parameter list (Decimal, Int)
25 | }
26 |
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: candidate has partially matching parameter list (Double, Double)
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate has partially matching parameter list (Double, Double)
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no 'pow' candidates produce the expected contextual result type 'Float'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
25 | }
26 |
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:21:5: error: cannot find 'objc_sync_enter' in scope
19 | ///Emoji read/write locking because it is too good to pass up
20 | public func 🔒(_ object: AnyObject, closure: () -> Void) {
21 | objc_sync_enter(object)
| `- error: cannot find 'objc_sync_enter' in scope
22 | closure()
23 | objc_sync_exit(object)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:23:5: error: cannot find 'objc_sync_exit' in scope
21 | objc_sync_enter(object)
22 | closure()
23 | objc_sync_exit(object)
| `- error: cannot find 'objc_sync_exit' in scope
24 | }
25 |
[190/1065] Compiling Swiftest SquareRootOperator.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no exact matches in call to global function 'pow'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| |- error: no exact matches in call to global function 'pow'
| |- note: candidate has partially matching parameter list (CGFloat, CGFloat)
| `- note: candidate has partially matching parameter list (Decimal, Int)
25 | }
26 |
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: candidate has partially matching parameter list (Double, Double)
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate has partially matching parameter list (Double, Double)
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no 'pow' candidates produce the expected contextual result type 'Float'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
25 | }
26 |
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:21:5: error: cannot find 'objc_sync_enter' in scope
19 | ///Emoji read/write locking because it is too good to pass up
20 | public func 🔒(_ object: AnyObject, closure: () -> Void) {
21 | objc_sync_enter(object)
| `- error: cannot find 'objc_sync_enter' in scope
22 | closure()
23 | objc_sync_exit(object)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:23:5: error: cannot find 'objc_sync_exit' in scope
21 | objc_sync_enter(object)
22 | closure()
23 | objc_sync_exit(object)
| `- error: cannot find 'objc_sync_exit' in scope
24 | }
25 |
[191/1065] Compiling Swiftest FunctionChainOperator.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no exact matches in call to global function 'pow'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| |- error: no exact matches in call to global function 'pow'
| |- note: candidate has partially matching parameter list (CGFloat, CGFloat)
| `- note: candidate has partially matching parameter list (Decimal, Int)
25 | }
26 |
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: candidate has partially matching parameter list (Double, Double)
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate has partially matching parameter list (Double, Double)
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no 'pow' candidates produce the expected contextual result type 'Float'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
25 | }
26 |
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:21:5: error: cannot find 'objc_sync_enter' in scope
19 | ///Emoji read/write locking because it is too good to pass up
20 | public func 🔒(_ object: AnyObject, closure: () -> Void) {
21 | objc_sync_enter(object)
| `- error: cannot find 'objc_sync_enter' in scope
22 | closure()
23 | objc_sync_exit(object)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:23:5: error: cannot find 'objc_sync_exit' in scope
21 | objc_sync_enter(object)
22 | closure()
23 | objc_sync_exit(object)
| `- error: cannot find 'objc_sync_exit' in scope
24 | }
25 |
[192/1065] Compiling Swiftest MapOperator.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no exact matches in call to global function 'pow'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| |- error: no exact matches in call to global function 'pow'
| |- note: candidate has partially matching parameter list (CGFloat, CGFloat)
| `- note: candidate has partially matching parameter list (Decimal, Int)
25 | }
26 |
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: candidate has partially matching parameter list (Double, Double)
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate has partially matching parameter list (Double, Double)
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no 'pow' candidates produce the expected contextual result type 'Float'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
25 | }
26 |
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:21:5: error: cannot find 'objc_sync_enter' in scope
19 | ///Emoji read/write locking because it is too good to pass up
20 | public func 🔒(_ object: AnyObject, closure: () -> Void) {
21 | objc_sync_enter(object)
| `- error: cannot find 'objc_sync_enter' in scope
22 | closure()
23 | objc_sync_exit(object)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:23:5: error: cannot find 'objc_sync_exit' in scope
21 | objc_sync_enter(object)
22 | closure()
23 | objc_sync_exit(object)
| `- error: cannot find 'objc_sync_exit' in scope
24 | }
25 |
[193/1065] Compiling Swiftest OptionalAssignmentOperators.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no exact matches in call to global function 'pow'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| |- error: no exact matches in call to global function 'pow'
| |- note: candidate has partially matching parameter list (CGFloat, CGFloat)
| `- note: candidate has partially matching parameter list (Decimal, Int)
25 | }
26 |
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: candidate has partially matching parameter list (Double, Double)
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate has partially matching parameter list (Double, Double)
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no 'pow' candidates produce the expected contextual result type 'Float'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
25 | }
26 |
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:21:5: error: cannot find 'objc_sync_enter' in scope
19 | ///Emoji read/write locking because it is too good to pass up
20 | public func 🔒(_ object: AnyObject, closure: () -> Void) {
21 | objc_sync_enter(object)
| `- error: cannot find 'objc_sync_enter' in scope
22 | closure()
23 | objc_sync_exit(object)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:23:5: error: cannot find 'objc_sync_exit' in scope
21 | objc_sync_enter(object)
22 | closure()
23 | objc_sync_exit(object)
| `- error: cannot find 'objc_sync_exit' in scope
24 | }
25 |
[194/1065] Compiling Swiftest TransformErrorOperator.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no exact matches in call to global function 'pow'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| |- error: no exact matches in call to global function 'pow'
| |- note: candidate has partially matching parameter list (CGFloat, CGFloat)
| `- note: candidate has partially matching parameter list (Decimal, Int)
25 | }
26 |
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: candidate has partially matching parameter list (Double, Double)
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate has partially matching parameter list (Double, Double)
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no 'pow' candidates produce the expected contextual result type 'Float'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
25 | }
26 |
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:21:5: error: cannot find 'objc_sync_enter' in scope
19 | ///Emoji read/write locking because it is too good to pass up
20 | public func 🔒(_ object: AnyObject, closure: () -> Void) {
21 | objc_sync_enter(object)
| `- error: cannot find 'objc_sync_enter' in scope
22 | closure()
23 | objc_sync_exit(object)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:23:5: error: cannot find 'objc_sync_exit' in scope
21 | objc_sync_enter(object)
22 | closure()
23 | objc_sync_exit(object)
| `- error: cannot find 'objc_sync_exit' in scope
24 | }
25 |
[195/1065] Compiling Swiftest TransformKeyPathToFunctionOperator.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no exact matches in call to global function 'pow'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| |- error: no exact matches in call to global function 'pow'
| |- note: candidate has partially matching parameter list (CGFloat, CGFloat)
| `- note: candidate has partially matching parameter list (Decimal, Int)
25 | }
26 |
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: candidate has partially matching parameter list (Double, Double)
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate has partially matching parameter list (Double, Double)
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no 'pow' candidates produce the expected contextual result type 'Float'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
25 | }
26 |
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:21:5: error: cannot find 'objc_sync_enter' in scope
19 | ///Emoji read/write locking because it is too good to pass up
20 | public func 🔒(_ object: AnyObject, closure: () -> Void) {
21 | objc_sync_enter(object)
| `- error: cannot find 'objc_sync_enter' in scope
22 | closure()
23 | objc_sync_exit(object)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:23:5: error: cannot find 'objc_sync_exit' in scope
21 | objc_sync_enter(object)
22 | closure()
23 | objc_sync_exit(object)
| `- error: cannot find 'objc_sync_exit' in scope
24 | }
25 |
[196/1065] Compiling Swiftest Pairs.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no exact matches in call to global function 'pow'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| |- error: no exact matches in call to global function 'pow'
| |- note: candidate has partially matching parameter list (CGFloat, CGFloat)
| `- note: candidate has partially matching parameter list (Decimal, Int)
25 | }
26 |
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: candidate has partially matching parameter list (Double, Double)
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate has partially matching parameter list (Double, Double)
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no 'pow' candidates produce the expected contextual result type 'Float'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
25 | }
26 |
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:21:5: error: cannot find 'objc_sync_enter' in scope
19 | ///Emoji read/write locking because it is too good to pass up
20 | public func 🔒(_ object: AnyObject, closure: () -> Void) {
21 | objc_sync_enter(object)
| `- error: cannot find 'objc_sync_enter' in scope
22 | closure()
23 | objc_sync_exit(object)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:23:5: error: cannot find 'objc_sync_exit' in scope
21 | objc_sync_enter(object)
22 | closure()
23 | objc_sync_exit(object)
| `- error: cannot find 'objc_sync_exit' in scope
24 | }
25 |
[197/1065] Compiling Swiftest Typealiases.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no exact matches in call to global function 'pow'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| |- error: no exact matches in call to global function 'pow'
| |- note: candidate has partially matching parameter list (CGFloat, CGFloat)
| `- note: candidate has partially matching parameter list (Decimal, Int)
25 | }
26 |
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: candidate has partially matching parameter list (Double, Double)
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate has partially matching parameter list (Double, Double)
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no 'pow' candidates produce the expected contextual result type 'Float'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
25 | }
26 |
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:21:5: error: cannot find 'objc_sync_enter' in scope
19 | ///Emoji read/write locking because it is too good to pass up
20 | public func 🔒(_ object: AnyObject, closure: () -> Void) {
21 | objc_sync_enter(object)
| `- error: cannot find 'objc_sync_enter' in scope
22 | closure()
23 | objc_sync_exit(object)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:23:5: error: cannot find 'objc_sync_exit' in scope
21 | objc_sync_enter(object)
22 | closure()
23 | objc_sync_exit(object)
| `- error: cannot find 'objc_sync_exit' in scope
24 | }
25 |
[198/1065] Compiling Swiftest DebugUtils.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no exact matches in call to global function 'pow'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| |- error: no exact matches in call to global function 'pow'
| |- note: candidate has partially matching parameter list (CGFloat, CGFloat)
| `- note: candidate has partially matching parameter list (Decimal, Int)
25 | }
26 |
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: candidate has partially matching parameter list (Double, Double)
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate has partially matching parameter list (Double, Double)
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no 'pow' candidates produce the expected contextual result type 'Float'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
25 | }
26 |
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:21:5: error: cannot find 'objc_sync_enter' in scope
19 | ///Emoji read/write locking because it is too good to pass up
20 | public func 🔒(_ object: AnyObject, closure: () -> Void) {
21 | objc_sync_enter(object)
| `- error: cannot find 'objc_sync_enter' in scope
22 | closure()
23 | objc_sync_exit(object)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:23:5: error: cannot find 'objc_sync_exit' in scope
21 | objc_sync_enter(object)
22 | closure()
23 | objc_sync_exit(object)
| `- error: cannot find 'objc_sync_exit' in scope
24 | }
25 |
[199/1065] Compiling Swiftest GlobalFunctions.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no exact matches in call to global function 'pow'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| |- error: no exact matches in call to global function 'pow'
| |- note: candidate has partially matching parameter list (CGFloat, CGFloat)
| `- note: candidate has partially matching parameter list (Decimal, Int)
25 | }
26 |
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: candidate has partially matching parameter list (Double, Double)
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate has partially matching parameter list (Double, Double)
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no 'pow' candidates produce the expected contextual result type 'Float'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
25 | }
26 |
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:21:5: error: cannot find 'objc_sync_enter' in scope
19 | ///Emoji read/write locking because it is too good to pass up
20 | public func 🔒(_ object: AnyObject, closure: () -> Void) {
21 | objc_sync_enter(object)
| `- error: cannot find 'objc_sync_enter' in scope
22 | closure()
23 | objc_sync_exit(object)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:23:5: error: cannot find 'objc_sync_exit' in scope
21 | objc_sync_enter(object)
22 | closure()
23 | objc_sync_exit(object)
| `- error: cannot find 'objc_sync_exit' in scope
24 | }
25 |
[200/1065] Compiling Swiftest Logger.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no exact matches in call to global function 'pow'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| |- error: no exact matches in call to global function 'pow'
| |- note: candidate has partially matching parameter list (CGFloat, CGFloat)
| `- note: candidate has partially matching parameter list (Decimal, Int)
25 | }
26 |
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: candidate has partially matching parameter list (Double, Double)
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate has partially matching parameter list (Double, Double)
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no 'pow' candidates produce the expected contextual result type 'Float'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
25 | }
26 |
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:21:5: error: cannot find 'objc_sync_enter' in scope
19 | ///Emoji read/write locking because it is too good to pass up
20 | public func 🔒(_ object: AnyObject, closure: () -> Void) {
21 | objc_sync_enter(object)
| `- error: cannot find 'objc_sync_enter' in scope
22 | closure()
23 | objc_sync_exit(object)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:23:5: error: cannot find 'objc_sync_exit' in scope
21 | objc_sync_enter(object)
22 | closure()
23 | objc_sync_exit(object)
| `- error: cannot find 'objc_sync_exit' in scope
24 | }
25 |
[201/1065] Compiling Swiftest ReadWriteLock.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no exact matches in call to global function 'pow'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| |- error: no exact matches in call to global function 'pow'
| |- note: candidate has partially matching parameter list (CGFloat, CGFloat)
| `- note: candidate has partially matching parameter list (Decimal, Int)
25 | }
26 |
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: candidate has partially matching parameter list (Double, Double)
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate has partially matching parameter list (Double, Double)
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no 'pow' candidates produce the expected contextual result type 'Float'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
25 | }
26 |
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:21:5: error: cannot find 'objc_sync_enter' in scope
19 | ///Emoji read/write locking because it is too good to pass up
20 | public func 🔒(_ object: AnyObject, closure: () -> Void) {
21 | objc_sync_enter(object)
| `- error: cannot find 'objc_sync_enter' in scope
22 | closure()
23 | objc_sync_exit(object)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:23:5: error: cannot find 'objc_sync_exit' in scope
21 | objc_sync_enter(object)
22 | closure()
23 | objc_sync_exit(object)
| `- error: cannot find 'objc_sync_exit' in scope
24 | }
25 |
[202/1065] Compiling Swiftest StringUtils.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no exact matches in call to global function 'pow'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| |- error: no exact matches in call to global function 'pow'
| |- note: candidate has partially matching parameter list (CGFloat, CGFloat)
| `- note: candidate has partially matching parameter list (Decimal, Int)
25 | }
26 |
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: candidate has partially matching parameter list (Double, Double)
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate has partially matching parameter list (Double, Double)
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no 'pow' candidates produce the expected contextual result type 'Float'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
25 | }
26 |
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:21:5: error: cannot find 'objc_sync_enter' in scope
19 | ///Emoji read/write locking because it is too good to pass up
20 | public func 🔒(_ object: AnyObject, closure: () -> Void) {
21 | objc_sync_enter(object)
| `- error: cannot find 'objc_sync_enter' in scope
22 | closure()
23 | objc_sync_exit(object)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:23:5: error: cannot find 'objc_sync_exit' in scope
21 | objc_sync_enter(object)
22 | closure()
23 | objc_sync_exit(object)
| `- error: cannot find 'objc_sync_exit' in scope
24 | }
25 |
[203/1065] Compiling Swiftest ThreadingUtils.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no exact matches in call to global function 'pow'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| |- error: no exact matches in call to global function 'pow'
| |- note: candidate has partially matching parameter list (CGFloat, CGFloat)
| `- note: candidate has partially matching parameter list (Decimal, Int)
25 | }
26 |
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: candidate has partially matching parameter list (Double, Double)
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: candidate has partially matching parameter list (Double, Double)
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Operators/ArithmeticOperators/ExponentiationOperator.swift:24:12: error: no 'pow' candidates produce the expected contextual result type 'Float'
22 | public func ** (lhs: Float, rhs: Float) -> Float {
23 | // http://nshipster.com/swift-operators/
24 | return pow(lhs, rhs)
| `- error: no 'pow' candidates produce the expected contextual result type 'Float'
25 | }
26 |
Foundation.pow:1:13: note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func pow(_ lhs: CGFloat, _ rhs: CGFloat) -> CGFloat
| `- note: 'pow' produces 'CGFloat', not the expected contextual result type 'Float'
Foundation.pow:1:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | public func pow(_ x: Decimal, _ y: Int) -> Decimal
| `- note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:196:8: note: 'pow' produces 'Double', not the expected contextual result type 'Float'
194 | long double hypotl(long double __x, long double __y);
195 |
196 | double pow(double __x, double __y);
| `- note: 'pow' produces 'Double', not the expected contextual result type 'Float'
197 | float powf(float __x, float __y);
198 | long double powl(long double __x, long double __y);
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:21:5: error: cannot find 'objc_sync_enter' in scope
19 | ///Emoji read/write locking because it is too good to pass up
20 | public func 🔒(_ object: AnyObject, closure: () -> Void) {
21 | objc_sync_enter(object)
| `- error: cannot find 'objc_sync_enter' in scope
22 | closure()
23 | objc_sync_exit(object)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Utils/ReadWriteLock.swift:23:5: error: cannot find 'objc_sync_exit' in scope
21 | objc_sync_enter(object)
22 | closure()
23 | objc_sync_exit(object)
| `- error: cannot find 'objc_sync_exit' in scope
24 | }
25 |
[204/1133] Emitting module Instrumentation
[205/1133] Compiling _RopeModule Rope+_Storage.swift
[206/1133] Compiling _RopeModule Rope+_UnmanagedLeaf.swift
[207/1133] Compiling _RopeModule Rope+_UnsafeHandle.swift
[208/1133] Compiling _RopeModule Rope.swift
[209/1133] Compiling _RopeModule RopeElement.swift
[210/1133] Compiling Swiftest Collection+Lookup.swift
[211/1133] Compiling Swiftest Collection+Matrix.swift
[212/1133] Compiling Swiftest Collection+Partitioning.swift
[213/1133] Compiling Swiftest Collection+ReverseLookup.swift
[214/1133] Compiling Swiftest RangeReplaceableCollection+Affix.swift
[215/1133] Compiling Swiftest RangeReplaceableCollection+Deduplication.swift
[216/1133] Compiling Swiftest RangeReplaceableCollection+Queue.swift
[217/1133] Compiling Swiftest RangeReplaceableCollection+RemovingInstances.swift
[218/1133] Compiling Swiftest RangeReplaceableCollection+Repeat.swift
[219/1133] Compiling Swiftest RangeReplaceableCollection+Rotate.swift
[220/1133] Compiling Swiftest RangeReplaceableCollection+Stack.swift
[221/1133] Compiling Swiftest Comparable+Clamped.swift
[222/1133] Compiling Swiftest Comparable+Optionals.swift
[223/1133] Compiling Swiftest Comparable+Range.swift
[224/1133] Compiling Swiftest Dictionary+.swift
[225/1133] Compiling Swiftest Dictionary+Arithmetic.swift
[226/1133] Compiling Swiftest Dictionary+DynamicLookup.swift
[227/1133] Compiling Swiftest Dictionary+EnumKeyLookup.swift
[228/1133] Compiling Swiftest SignedInteger+.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: cannot pass immutable value as inout argument: literals are not mutable
114 | #endif
115 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 | #endif
115 | }
[229/1133] Compiling Swiftest SignedNumeric+.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: cannot pass immutable value as inout argument: literals are not mutable
114 | #endif
115 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 | #endif
115 | }
[230/1133] Compiling Swiftest String+.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: cannot pass immutable value as inout argument: literals are not mutable
114 | #endif
115 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 | #endif
115 | }
[231/1133] Compiling Swiftest String+Affix.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: cannot pass immutable value as inout argument: literals are not mutable
114 | #endif
115 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 | #endif
115 | }
[232/1133] Compiling Swiftest String+BooleanTests.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: cannot pass immutable value as inout argument: literals are not mutable
114 | #endif
115 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 | #endif
115 | }
[233/1133] Compiling Swiftest String+Case.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: cannot pass immutable value as inout argument: literals are not mutable
114 | #endif
115 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 | #endif
115 | }
[234/1133] Compiling Swiftest String+Characters.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: cannot pass immutable value as inout argument: literals are not mutable
114 | #endif
115 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 | #endif
115 | }
[235/1133] Compiling Swiftest String+Repeat.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: cannot pass immutable value as inout argument: literals are not mutable
114 | #endif
115 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 | #endif
115 | }
[236/1133] Compiling Swiftest String+SafeLookup.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: cannot pass immutable value as inout argument: literals are not mutable
114 | #endif
115 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 | #endif
115 | }
[237/1133] Compiling Swiftest String+Slicing.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: cannot pass immutable value as inout argument: literals are not mutable
114 | #endif
115 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 | #endif
115 | }
[238/1133] Compiling Swiftest String+Transformations.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: cannot pass immutable value as inout argument: literals are not mutable
114 | #endif
115 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 | #endif
115 | }
[239/1133] Compiling Swiftest String+Truncating.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: cannot pass immutable value as inout argument: literals are not mutable
114 | #endif
115 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 | #endif
115 | }
[240/1133] Compiling Swiftest StringProtocol+LongestCommonSuffix.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: cannot pass immutable value as inout argument: literals are not mutable
114 | #endif
115 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 | #endif
115 | }
[241/1133] Compiling Swiftest KeyPathFilter.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: cannot pass immutable value as inout argument: literals are not mutable
114 | #endif
115 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 | #endif
115 | }
[242/1133] Compiling Swiftest KeyPathBuildable.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: cannot pass immutable value as inout argument: literals are not mutable
114 | #endif
115 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 | #endif
115 | }
[243/1133] Compiling Swiftest KeyPathValueMapOperator.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: cannot pass immutable value as inout argument: literals are not mutable
114 | #endif
115 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 | #endif
115 | }
[244/1133] Compiling Swiftest KeyPathValuePair.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: cannot pass immutable value as inout argument: literals are not mutable
114 | #endif
115 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 | #endif
115 | }
[245/1133] Compiling Swiftest KeyPathValuePairAssignable.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: cannot pass immutable value as inout argument: literals are not mutable
114 | #endif
115 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 | return scanner.scanDecimal() != nil && scanner.isAtEnd
112 | #else
113 | return scanner.scanDecimal(nil) && scanner.isAtEnd
| `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 | #endif
115 | }
[246/1133] Compiling Instrumentation NoOpInstrument.swift
[247/1134] Compiling Swiftest RangeConvertible.swift
[248/1134] Compiling Swiftest StringConvertible.swift
[249/1134] Compiling Swiftest Identifiable.swift
[250/1134] Compiling Swiftest DefaultMutable.swift
[251/1134] Compiling Swiftest Defaultable.swift
[252/1134] Compiling Swiftest EmptyInitializable.swift
[253/1134] Compiling Swiftest Mockable.swift
[254/1134] Compiling Swiftest ObjectDisplayable.swift
[255/1134] Compiling Swiftest OptionalProtocol.swift
[256/1134] Compiling Swiftest RangeRandomizable.swift
[257/1134] Compiling Swiftest Then.swift
[258/1134] Compiling Swiftest CALayer+.swift
[259/1134] Compiling Swiftest BinaryFloatingPoint+Rounding.swift
[260/1134] Compiling Swiftest Character+.swift
[261/1134] Compiling Swiftest ClosedRange+Wrapping.swift
[262/1134] Compiling Swiftest Collection+.swift
[263/1134] Compiling Swiftest Collection+Filtering.swift
[264/1134] Compiling Swiftest Collection+Indices.swift
[265/1134] Compiling _RopeModule Rope+Extract.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
97 | public func extractURLs() throws -> [URL] {
98 | var urls: [URL] = []
99 | let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
| `- error: cannot find type 'NSDataDetector' in scope
100 | let text: String = self
101 | //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 | detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 | if let result = result,
104 | let url = result.url {
| `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 | urls.append(url)
106 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
| `- error: cannot find type 'URLRequest' in scope
14 |
15 | /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 | /// - Returns: Codable object for key (if exists).
50 | func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 | guard let data = value(forKey: key) as? Data else { return nil }
| `- error: cannot find 'value' in scope
52 | return try? decoder.decode(type.self, from: data)
53 | }
[266/1134] Compiling _RopeModule Rope+Find.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
97 | public func extractURLs() throws -> [URL] {
98 | var urls: [URL] = []
99 | let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
| `- error: cannot find type 'NSDataDetector' in scope
100 | let text: String = self
101 | //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 | detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 | if let result = result,
104 | let url = result.url {
| `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 | urls.append(url)
106 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
| `- error: cannot find type 'URLRequest' in scope
14 |
15 | /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 | /// - Returns: Codable object for key (if exists).
50 | func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 | guard let data = value(forKey: key) as? Data else { return nil }
| `- error: cannot find 'value' in scope
52 | return try? decoder.decode(type.self, from: data)
53 | }
[267/1134] Compiling _RopeModule Rope+ForEachWhile.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
97 | public func extractURLs() throws -> [URL] {
98 | var urls: [URL] = []
99 | let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
| `- error: cannot find type 'NSDataDetector' in scope
100 | let text: String = self
101 | //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 | detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 | if let result = result,
104 | let url = result.url {
| `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 | urls.append(url)
106 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
| `- error: cannot find type 'URLRequest' in scope
14 |
15 | /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 | /// - Returns: Codable object for key (if exists).
50 | func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 | guard let data = value(forKey: key) as? Data else { return nil }
| `- error: cannot find 'value' in scope
52 | return try? decoder.decode(type.self, from: data)
53 | }
[268/1134] Compiling _RopeModule Rope+Insert.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
97 | public func extractURLs() throws -> [URL] {
98 | var urls: [URL] = []
99 | let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
| `- error: cannot find type 'NSDataDetector' in scope
100 | let text: String = self
101 | //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 | detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 | if let result = result,
104 | let url = result.url {
| `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 | urls.append(url)
106 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
| `- error: cannot find type 'URLRequest' in scope
14 |
15 | /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 | /// - Returns: Codable object for key (if exists).
50 | func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 | guard let data = value(forKey: key) as? Data else { return nil }
| `- error: cannot find 'value' in scope
52 | return try? decoder.decode(type.self, from: data)
53 | }
[269/1134] Compiling _RopeModule BigString+UnicodeScalarView.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
97 | public func extractURLs() throws -> [URL] {
98 | var urls: [URL] = []
99 | let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
| `- error: cannot find type 'NSDataDetector' in scope
100 | let text: String = self
101 | //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 | detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 | if let result = result,
104 | let url = result.url {
| `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 | urls.append(url)
106 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
| `- error: cannot find type 'URLRequest' in scope
14 |
15 | /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 | /// - Returns: Codable object for key (if exists).
50 | func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 | guard let data = value(forKey: key) as? Data else { return nil }
| `- error: cannot find 'value' in scope
52 | return try? decoder.decode(type.self, from: data)
53 | }
[270/1134] Compiling _RopeModule BigSubstring+UTF16View.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
97 | public func extractURLs() throws -> [URL] {
98 | var urls: [URL] = []
99 | let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
| `- error: cannot find type 'NSDataDetector' in scope
100 | let text: String = self
101 | //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 | detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 | if let result = result,
104 | let url = result.url {
| `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 | urls.append(url)
106 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
| `- error: cannot find type 'URLRequest' in scope
14 |
15 | /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 | /// - Returns: Codable object for key (if exists).
50 | func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 | guard let data = value(forKey: key) as? Data else { return nil }
| `- error: cannot find 'value' in scope
52 | return try? decoder.decode(type.self, from: data)
53 | }
[271/1134] Compiling _RopeModule BigSubstring+UTF8View.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
97 | public func extractURLs() throws -> [URL] {
98 | var urls: [URL] = []
99 | let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
| `- error: cannot find type 'NSDataDetector' in scope
100 | let text: String = self
101 | //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 | detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 | if let result = result,
104 | let url = result.url {
| `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 | urls.append(url)
106 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
| `- error: cannot find type 'URLRequest' in scope
14 |
15 | /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 | /// - Returns: Codable object for key (if exists).
50 | func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 | guard let data = value(forKey: key) as? Data else { return nil }
| `- error: cannot find 'value' in scope
52 | return try? decoder.decode(type.self, from: data)
53 | }
[272/1134] Compiling _RopeModule BigSubstring+UnicodeScalarView.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
97 | public func extractURLs() throws -> [URL] {
98 | var urls: [URL] = []
99 | let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
| `- error: cannot find type 'NSDataDetector' in scope
100 | let text: String = self
101 | //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 | detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 | if let result = result,
104 | let url = result.url {
| `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 | urls.append(url)
106 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
| `- error: cannot find type 'URLRequest' in scope
14 |
15 | /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 | /// - Returns: Codable object for key (if exists).
50 | func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 | guard let data = value(forKey: key) as? Data else { return nil }
| `- error: cannot find 'value' in scope
52 | return try? decoder.decode(type.self, from: data)
53 | }
[273/1134] Compiling _RopeModule BigSubstring.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
97 | public func extractURLs() throws -> [URL] {
98 | var urls: [URL] = []
99 | let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
| `- error: cannot find type 'NSDataDetector' in scope
100 | let text: String = self
101 | //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 | detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 | if let result = result,
104 | let url = result.url {
| `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 | urls.append(url)
106 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
| `- error: cannot find type 'URLRequest' in scope
14 |
15 | /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 | /// - Returns: Codable object for key (if exists).
50 | func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 | guard let data = value(forKey: key) as? Data else { return nil }
| `- error: cannot find 'value' in scope
52 | return try? decoder.decode(type.self, from: data)
53 | }
[274/1134] Compiling _RopeModule Rope+Builder.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
97 | public func extractURLs() throws -> [URL] {
98 | var urls: [URL] = []
99 | let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
| `- error: cannot find type 'NSDataDetector' in scope
100 | let text: String = self
101 | //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 | detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 | if let result = result,
104 | let url = result.url {
| `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 | urls.append(url)
106 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
| `- error: cannot find type 'URLRequest' in scope
14 |
15 | /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 | /// - Returns: Codable object for key (if exists).
50 | func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 | guard let data = value(forKey: key) as? Data else { return nil }
| `- error: cannot find 'value' in scope
52 | return try? decoder.decode(type.self, from: data)
53 | }
[275/1134] Compiling _RopeModule Rope+Debugging.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
97 | public func extractURLs() throws -> [URL] {
98 | var urls: [URL] = []
99 | let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
| `- error: cannot find type 'NSDataDetector' in scope
100 | let text: String = self
101 | //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 | detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 | if let result = result,
104 | let url = result.url {
| `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 | urls.append(url)
106 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
| `- error: cannot find type 'URLRequest' in scope
14 |
15 | /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 | /// - Returns: Codable object for key (if exists).
50 | func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 | guard let data = value(forKey: key) as? Data else { return nil }
| `- error: cannot find 'value' in scope
52 | return try? decoder.decode(type.self, from: data)
53 | }
[276/1134] Compiling _RopeModule Rope+Invariants.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
97 | public func extractURLs() throws -> [URL] {
98 | var urls: [URL] = []
99 | let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
| `- error: cannot find type 'NSDataDetector' in scope
100 | let text: String = self
101 | //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 | detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 | if let result = result,
104 | let url = result.url {
| `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 | urls.append(url)
106 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
| `- error: cannot find type 'URLRequest' in scope
14 |
15 | /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 | /// - Returns: Codable object for key (if exists).
50 | func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 | guard let data = value(forKey: key) as? Data else { return nil }
| `- error: cannot find 'value' in scope
52 | return try? decoder.decode(type.self, from: data)
53 | }
[277/1134] Compiling _RopeModule Rope+_Node.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
97 | public func extractURLs() throws -> [URL] {
98 | var urls: [URL] = []
99 | let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
| `- error: cannot find type 'NSDataDetector' in scope
100 | let text: String = self
101 | //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 | detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 | if let result = result,
104 | let url = result.url {
| `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 | urls.append(url)
106 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
| `- error: cannot find type 'URLRequest' in scope
14 |
15 | /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 | /// - Returns: Codable object for key (if exists).
50 | func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 | guard let data = value(forKey: key) as? Data else { return nil }
| `- error: cannot find 'value' in scope
52 | return try? decoder.decode(type.self, from: data)
53 | }
[278/1134] Compiling Swiftest BoolConvertible.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
97 | public func extractURLs() throws -> [URL] {
98 | var urls: [URL] = []
99 | let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
| `- error: cannot find type 'NSDataDetector' in scope
100 | let text: String = self
101 | //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 | detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 | if let result = result,
104 | let url = result.url {
| `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 | urls.append(url)
106 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
| `- error: cannot find type 'URLRequest' in scope
14 |
15 | /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 | /// - Returns: Codable object for key (if exists).
50 | func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 | guard let data = value(forKey: key) as? Data else { return nil }
| `- error: cannot find 'value' in scope
52 | return try? decoder.decode(type.self, from: data)
53 | }
[279/1134] Compiling Swiftest CGFloatConvertible.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
97 | public func extractURLs() throws -> [URL] {
98 | var urls: [URL] = []
99 | let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
| `- error: cannot find type 'NSDataDetector' in scope
100 | let text: String = self
101 | //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 | detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 | if let result = result,
104 | let url = result.url {
| `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 | urls.append(url)
106 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
| `- error: cannot find type 'URLRequest' in scope
14 |
15 | /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 | /// - Returns: Codable object for key (if exists).
50 | func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 | guard let data = value(forKey: key) as? Data else { return nil }
| `- error: cannot find 'value' in scope
52 | return try? decoder.decode(type.self, from: data)
53 | }
[280/1134] Compiling Swiftest DoubleConvertible.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
97 | public func extractURLs() throws -> [URL] {
98 | var urls: [URL] = []
99 | let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
| `- error: cannot find type 'NSDataDetector' in scope
100 | let text: String = self
101 | //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 | detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 | if let result = result,
104 | let url = result.url {
| `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 | urls.append(url)
106 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
| `- error: cannot find type 'URLRequest' in scope
14 |
15 | /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 | /// - Returns: Codable object for key (if exists).
50 | func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 | guard let data = value(forKey: key) as? Data else { return nil }
| `- error: cannot find 'value' in scope
52 | return try? decoder.decode(type.self, from: data)
53 | }
[281/1134] Compiling Swiftest FloatConvertible.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
97 | public func extractURLs() throws -> [URL] {
98 | var urls: [URL] = []
99 | let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
| `- error: cannot find type 'NSDataDetector' in scope
100 | let text: String = self
101 | //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 | detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 | if let result = result,
104 | let url = result.url {
| `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 | urls.append(url)
106 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
| `- error: cannot find type 'URLRequest' in scope
14 |
15 | /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 | /// - Returns: Codable object for key (if exists).
50 | func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 | guard let data = value(forKey: key) as? Data else { return nil }
| `- error: cannot find 'value' in scope
52 | return try? decoder.decode(type.self, from: data)
53 | }
[282/1134] Compiling Swiftest IntConvertible.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
97 | public func extractURLs() throws -> [URL] {
98 | var urls: [URL] = []
99 | let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
| `- error: cannot find type 'NSDataDetector' in scope
100 | let text: String = self
101 | //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 | detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 | if let result = result,
104 | let url = result.url {
| `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 | urls.append(url)
106 | }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
| `- error: cannot find type 'URLRequest' in scope
14 |
15 | /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 | /// - Returns: Codable object for key (if exists).
50 | func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 | guard let data = value(forKey: key) as? Data else { return nil }
| `- error: cannot find 'value' in scope
52 | return try? decoder.decode(type.self, from: data)
53 | }
[283/1134] Compiling Instrumentation Instrument.swift
[284/1134] Compiling Instrumentation MultiplexInstrument.swift
[285/1134] Compiling _RopeModule BigString+Chunk+Description.swift
[286/1134] Compiling _RopeModule BigString+Chunk+Indexing by Characters.swift
[287/1134] Compiling _RopeModule BigString+Chunk+Indexing by UTF16.swift
[288/1134] Compiling _RopeModule BigString+Chunk+RopeElement.swift
[289/1134] Compiling _RopeModule BigString+Chunk+Splitting.swift
[290/1134] Compiling _RopeModule BigString+Chunk.swift
[291/1134] Compiling _RopeModule BigString+BidirectionalCollection.swift
[292/1134] Compiling _RopeModule BigString+Append.swift
[293/1134] Compiling _RopeModule BigString+Initializers.swift
[294/1134] Compiling _RopeModule BigString+TextOutputStream.swift
[295/1134] Compiling _RopeModule BigString+Chunk+Append and Insert.swift
[296/1134] Compiling _RopeModule BigString+Chunk+Breaks.swift
[297/1134] Compiling _RopeModule BigString+Chunk+Counts.swift
[298/1134] Compiling Instrumentation InstrumentationSystem.swift
BUILD FAILURE 6.1 android