The Swift Package Index logo.Swift Package Index

Build Information

Failed to build FluentExtensions, reference master (e7e995), with Swift 6.2 for Android on 27 Sep 2025 00:06:33 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1

Build Log

21 |         let types: NSTextCheckingResult.CheckingType = [.link]
22 |
23 |         guard let detector = try? NSDataDetector(types: types.rawValue) else {
   |                                   `- error: cannot find 'NSDataDetector' in scope
24 |             return false
25 |         }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:39:37: error: cannot infer contextual base in reference to member 'link'
37 |
38 |         // result should be a link
39 |         guard result.resultType == .link else {
   |                                     `- error: cannot infer contextual base in reference to member 'link'
40 |             return false
41 |         }
[305/1298] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:42:25: error: cannot find 'kCFStringTokenizerUnitWord' in scope
40 |     public func tokenize() -> [String] {
41 |         let inputRange = fullIndexRange.toNSRange(self).cfRange
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
   |                         `- error: cannot find 'kCFStringTokenizerUnitWord' in scope
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:43:22: error: cannot find 'CFLocaleCopyCurrent' in scope
41 |         let inputRange = fullIndexRange.toNSRange(self).cfRange
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
   |                      `- error: cannot find 'CFLocaleCopyCurrent' in scope
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:25: error: cannot find 'CFStringTokenizerCreate' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                         `- error: cannot find 'CFStringTokenizerCreate' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:50: error: cannot find 'kCFAllocatorDefault' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                                                  `- error: cannot find 'kCFAllocatorDefault' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:79: error: cannot find type 'CFString' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                                                                               `- error: cannot find type 'CFString' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:45:25: error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
46 |         var tokens: [String] = []
47 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:48:28: error: cannot find 'CFStringTokenizerTokenType' in scope
46 |         var tokens: [String] = []
47 |
48 |         while tokenType != CFStringTokenizerTokenType() {
   |                            `- error: cannot find 'CFStringTokenizerTokenType' in scope
49 |             let currentTokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer)
50 |             let substring = self.subString(currentTokenRange.nsRange)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:49:37: error: cannot find 'CFStringTokenizerGetCurrentTokenRange' in scope
47 |
48 |         while tokenType != CFStringTokenizerTokenType() {
49 |             let currentTokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer)
   |                                     `- error: cannot find 'CFStringTokenizerGetCurrentTokenRange' in scope
50 |             let substring = self.subString(currentTokenRange.nsRange)
51 |             tokens.append(substring)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:52:25: error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
50 |             let substring = self.subString(currentTokenRange.nsRange)
51 |             tokens.append(substring)
52 |             tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
53 |         }
54 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:23:35: error: cannot find 'NSDataDetector' in scope
21 |         let types: NSTextCheckingResult.CheckingType = [.link]
22 |
23 |         guard let detector = try? NSDataDetector(types: types.rawValue) else {
   |                                   `- error: cannot find 'NSDataDetector' in scope
24 |             return false
25 |         }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:39:37: error: cannot infer contextual base in reference to member 'link'
37 |
38 |         // result should be a link
39 |         guard result.resultType == .link else {
   |                                     `- error: cannot infer contextual base in reference to member 'link'
40 |             return false
41 |         }
[306/1298] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:42:25: error: cannot find 'kCFStringTokenizerUnitWord' in scope
40 |     public func tokenize() -> [String] {
41 |         let inputRange = fullIndexRange.toNSRange(self).cfRange
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
   |                         `- error: cannot find 'kCFStringTokenizerUnitWord' in scope
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:43:22: error: cannot find 'CFLocaleCopyCurrent' in scope
41 |         let inputRange = fullIndexRange.toNSRange(self).cfRange
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
   |                      `- error: cannot find 'CFLocaleCopyCurrent' in scope
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:25: error: cannot find 'CFStringTokenizerCreate' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                         `- error: cannot find 'CFStringTokenizerCreate' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:50: error: cannot find 'kCFAllocatorDefault' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                                                  `- error: cannot find 'kCFAllocatorDefault' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:79: error: cannot find type 'CFString' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                                                                               `- error: cannot find type 'CFString' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:45:25: error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
46 |         var tokens: [String] = []
47 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:48:28: error: cannot find 'CFStringTokenizerTokenType' in scope
46 |         var tokens: [String] = []
47 |
48 |         while tokenType != CFStringTokenizerTokenType() {
   |                            `- error: cannot find 'CFStringTokenizerTokenType' in scope
49 |             let currentTokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer)
50 |             let substring = self.subString(currentTokenRange.nsRange)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:49:37: error: cannot find 'CFStringTokenizerGetCurrentTokenRange' in scope
47 |
48 |         while tokenType != CFStringTokenizerTokenType() {
49 |             let currentTokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer)
   |                                     `- error: cannot find 'CFStringTokenizerGetCurrentTokenRange' in scope
50 |             let substring = self.subString(currentTokenRange.nsRange)
51 |             tokens.append(substring)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:52:25: error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
50 |             let substring = self.subString(currentTokenRange.nsRange)
51 |             tokens.append(substring)
52 |             tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
53 |         }
54 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:23:35: error: cannot find 'NSDataDetector' in scope
21 |         let types: NSTextCheckingResult.CheckingType = [.link]
22 |
23 |         guard let detector = try? NSDataDetector(types: types.rawValue) else {
   |                                   `- error: cannot find 'NSDataDetector' in scope
24 |             return false
25 |         }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:39:37: error: cannot infer contextual base in reference to member 'link'
37 |
38 |         // result should be a link
39 |         guard result.resultType == .link else {
   |                                     `- error: cannot infer contextual base in reference to member 'link'
40 |             return false
41 |         }
[307/1299] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:42:25: error: cannot find 'kCFStringTokenizerUnitWord' in scope
40 |     public func tokenize() -> [String] {
41 |         let inputRange = fullIndexRange.toNSRange(self).cfRange
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
   |                         `- error: cannot find 'kCFStringTokenizerUnitWord' in scope
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:43:22: error: cannot find 'CFLocaleCopyCurrent' in scope
41 |         let inputRange = fullIndexRange.toNSRange(self).cfRange
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
   |                      `- error: cannot find 'CFLocaleCopyCurrent' in scope
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:25: error: cannot find 'CFStringTokenizerCreate' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                         `- error: cannot find 'CFStringTokenizerCreate' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:50: error: cannot find 'kCFAllocatorDefault' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                                                  `- error: cannot find 'kCFAllocatorDefault' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:44:79: error: cannot find type 'CFString' in scope
42 |         let flag = UInt(kCFStringTokenizerUnitWord)
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
   |                                                                               `- error: cannot find type 'CFString' in scope
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
46 |         var tokens: [String] = []
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:45:25: error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
43 |         let locale = CFLocaleCopyCurrent()
44 |         let tokenizer = CFStringTokenizerCreate( kCFAllocatorDefault, self as CFString?, inputRange, flag, locale)
45 |         var tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
46 |         var tokens: [String] = []
47 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:48:28: error: cannot find 'CFStringTokenizerTokenType' in scope
46 |         var tokens: [String] = []
47 |
48 |         while tokenType != CFStringTokenizerTokenType() {
   |                            `- error: cannot find 'CFStringTokenizerTokenType' in scope
49 |             let currentTokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer)
50 |             let substring = self.subString(currentTokenRange.nsRange)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:49:37: error: cannot find 'CFStringTokenizerGetCurrentTokenRange' in scope
47 |
48 |         while tokenType != CFStringTokenizerTokenType() {
49 |             let currentTokenRange = CFStringTokenizerGetCurrentTokenRange(tokenizer)
   |                                     `- error: cannot find 'CFStringTokenizerGetCurrentTokenRange' in scope
50 |             let substring = self.subString(currentTokenRange.nsRange)
51 |             tokens.append(substring)
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+ContentParsing.swift:52:25: error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
50 |             let substring = self.subString(currentTokenRange.nsRange)
51 |             tokens.append(substring)
52 |             tokenType = CFStringTokenizerAdvanceToNextToken(tokenizer)
   |                         `- error: cannot find 'CFStringTokenizerAdvanceToNextToken' in scope
53 |         }
54 |
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:23:35: error: cannot find 'NSDataDetector' in scope
21 |         let types: NSTextCheckingResult.CheckingType = [.link]
22 |
23 |         guard let detector = try? NSDataDetector(types: types.rawValue) else {
   |                                   `- error: cannot find 'NSDataDetector' in scope
24 |             return false
25 |         }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+DataDetection.swift:39:37: error: cannot infer contextual base in reference to member 'link'
37 |
38 |         // result should be a link
39 |         guard result.resultType == .link else {
   |                                     `- error: cannot infer contextual base in reference to member 'link'
40 |             return false
41 |         }
[308/1299] Compiling RuntimeExtensions EmptyInitializable.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 |     }
[309/1299] Compiling RuntimeExtensions EnumUtils.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 |     }
[310/1299] Compiling OrderedCollections OrderedDictionary+Deprecations.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 |     }
[311/1299] Compiling OrderedCollections OrderedDictionary+Descriptions.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 |     }
[312/1299] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.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 |     }
[313/1299] Compiling OrderedCollections OrderedDictionary+Elements.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 |     }
/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 |     }
[320/1299] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.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 |     }
[321/1299] Compiling OrderedCollections OrderedDictionary+Sendable.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 |     }
[322/1299] Compiling OrderedCollections OrderedDictionary+Sequence.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 |     }
[323/1299] Compiling OrderedCollections OrderedDictionary+Values.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 |     }
[324/1299] Compiling OrderedCollections _HashTable+Bucket.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 |     }
[325/1299] Compiling OrderedCollections _HashTable+BucketIterator.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 |     }
[326/1303] Compiling Swiftest Dictionary+Merging.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[327/1303] Compiling Swiftest Equatable+.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[328/1303] Compiling Swiftest FloatingPoint+.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[329/1303] Compiling Swiftest Int+.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[330/1303] Compiling Swiftest Int+Loop.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[331/1303] Compiling Swiftest Int+WrappedToRange.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[332/1303] Compiling Swiftest Optional+.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[333/1303] Compiling Swiftest Optional+EmptyCollections.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[334/1303] Compiling Swiftest Sequence+Aggregate.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[335/1303] Compiling Swiftest Sequence+BooleanTests.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[336/1303] Compiling Swiftest Sequence+Grouping.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[337/1303] Compiling Swiftest Sequence+Indexing.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[338/1303] Compiling Swiftest Sequence+Iterating.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[339/1303] Compiling Swiftest Sequence+KeyPathSorting.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[340/1303] Compiling Swiftest Sequence+KeyPathValues.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[341/1303] Compiling Swiftest Sequence+Search.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[342/1303] Compiling Swiftest Sequence+Transformed.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[343/1303] Compiling Swiftest Set+ContentAnalysis.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:32: error: cannot convert value of type 'Self' to expected argument type 'Double'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                                `- error: cannot convert value of type 'Self' to expected argument type 'Double'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:19:27: error: cannot convert return expression of type 'Double' to return type 'Self'
17 |     /// Swiftest: Ceil of number.
18 |     var ceil: Self {
19 |         return Foundation.ceil(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
20 |     }
21 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:33: error: cannot convert value of type 'Self' to expected argument type 'Double'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                                 `- error: cannot convert value of type 'Self' to expected argument type 'Double'
32 |     }
33 |     #endif
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/FloatingPoint+.swift:31:27: error: cannot convert return expression of type 'Double' to return type 'Self'
29 |     /// Swiftest: Floor of number.
30 |     var floor: Self {
31 |         return Foundation.floor(self)
   |                           `- error: cannot convert return expression of type 'Double' to return type 'Self'
32 |     }
33 |     #endif
[344/1305] Compiling Swiftest Collection+Lookup.swift
[345/1305] Compiling Swiftest Collection+Matrix.swift
[346/1305] Compiling Swiftest Collection+Partitioning.swift
[347/1305] Compiling Swiftest Collection+ReverseLookup.swift
[348/1305] Compiling Swiftest RangeReplaceableCollection+Affix.swift
[349/1305] Compiling Swiftest RangeReplaceableCollection+Deduplication.swift
[350/1305] Compiling Swiftest RangeReplaceableCollection+Queue.swift
[351/1305] Compiling Swiftest RangeReplaceableCollection+RemovingInstances.swift
[352/1305] Compiling Swiftest RangeReplaceableCollection+Repeat.swift
[353/1305] Compiling Swiftest RangeReplaceableCollection+Rotate.swift
[354/1305] Compiling Swiftest RangeReplaceableCollection+Stack.swift
[355/1305] Compiling Swiftest Comparable+Clamped.swift
[356/1305] Compiling Swiftest Comparable+Optionals.swift
[357/1305] Compiling Swiftest Comparable+Range.swift
[358/1305] Compiling Swiftest Dictionary+.swift
[359/1305] Compiling Swiftest Dictionary+Arithmetic.swift
[360/1305] Compiling Swiftest Dictionary+DynamicLookup.swift
[361/1305] Compiling Swiftest Dictionary+EnumKeyLookup.swift
[362/1305] Compiling RuntimeExtensions ProxyWrapper.swift
[363/1305] Compiling Logging Logging.swift
[364/1305] Compiling Logging LogHandler.swift
[365/1305] Compiling Logging Locks.swift
[366/1306] 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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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 |
[367/1306] 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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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 |
[368/1306] 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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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 |
[369/1306] 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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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 |
[370/1306] 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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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 |
[371/1306] 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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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 |
[372/1306] 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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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 |
[373/1306] 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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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 |
[374/1306] 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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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 |
[375/1306] 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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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 |
[376/1306] 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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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 |
[377/1306] 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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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 |
[378/1306] 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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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 |
[379/1306] 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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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 |
[380/1306] 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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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 |
[381/1306] 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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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 |
[382/1306] 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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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.2-RELEASE-android-0.1.artifactbundle/swift-android/ndk-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 |
[383/1306] Compiling RuntimeExtensions OptionalProtocol.swift
[384/1306] Compiling RuntimeExtensions PropertyInfo++.swift
[385/1306] Compiling RuntimeExtensions GlobalRuntimeFunctions.swift
[386/1306] Compiling HeapModule Heap+Invariants.swift
[387/1306] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[388/1306] Compiling HeapModule Heap+Descriptions.swift
[389/1306] Compiling Tracing Tracer.swift
BUILD FAILURE 6.2 android