The Swift Package Index logo.Swift Package Index

Build Information

Failed to build CursorPagination, reference master (ac9e7a), with Swift 6.3 for Android on 15 Apr 2026 15:43:40 UTC.

Build Command

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

Build Log

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 |         }
[205/1262] Compiling OrderedCollections OrderedSet+Initializers.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 |         }
[206/1262] Compiling OrderedCollections OrderedSet+Insertions.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 |         }
[207/1262] Compiling OrderedCollections OrderedSet+Invariants.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 |         }
[208/1262] Compiling OrderedCollections OrderedSet+Partial MutableCollection.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 |         }
[209/1262] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.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 |         }
[210/1262] 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
[211/1262] 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
[212/1262] 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
[213/1262] 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
[214/1262] 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
[215/1262] 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
[216/1262] 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
[217/1262] 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
[218/1262] 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
[219/1262] 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
[220/1262] 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
[221/1262] 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
[222/1262] 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
[223/1262] 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
[224/1262] 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
[225/1262] 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
[226/1262] 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
[227/1262] 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
[228/1262] Compiling Swiftest SignedInteger+.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                        `- error: cannot pass immutable value as inout argument: literals are not mutable
114 |         #endif
115 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                                    `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 |         #endif
115 |     }
[229/1262] Compiling Swiftest SignedNumeric+.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                        `- error: cannot pass immutable value as inout argument: literals are not mutable
114 |         #endif
115 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                                    `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 |         #endif
115 |     }
[230/1262] Compiling Swiftest String+.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                        `- error: cannot pass immutable value as inout argument: literals are not mutable
114 |         #endif
115 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                                    `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 |         #endif
115 |     }
[231/1262] Compiling Swiftest String+Affix.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                        `- error: cannot pass immutable value as inout argument: literals are not mutable
114 |         #endif
115 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                                    `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 |         #endif
115 |     }
[232/1262] Compiling Swiftest String+BooleanTests.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                        `- error: cannot pass immutable value as inout argument: literals are not mutable
114 |         #endif
115 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                                    `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 |         #endif
115 |     }
[233/1262] Compiling Swiftest String+Case.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                        `- error: cannot pass immutable value as inout argument: literals are not mutable
114 |         #endif
115 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                                    `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 |         #endif
115 |     }
[234/1262] Compiling Swiftest String+Characters.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                        `- error: cannot pass immutable value as inout argument: literals are not mutable
114 |         #endif
115 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                                    `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 |         #endif
115 |     }
[235/1262] Compiling Swiftest String+Repeat.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                        `- error: cannot pass immutable value as inout argument: literals are not mutable
114 |         #endif
115 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                                    `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 |         #endif
115 |     }
[236/1262] Compiling Swiftest String+SafeLookup.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                        `- error: cannot pass immutable value as inout argument: literals are not mutable
114 |         #endif
115 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                                    `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 |         #endif
115 |     }
[237/1262] Compiling Swiftest String+Slicing.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                        `- error: cannot pass immutable value as inout argument: literals are not mutable
114 |         #endif
115 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                                    `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 |         #endif
115 |     }
[238/1262] Compiling Swiftest String+Transformations.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                        `- error: cannot pass immutable value as inout argument: literals are not mutable
114 |         #endif
115 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                                    `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 |         #endif
115 |     }
[239/1262] Compiling Swiftest String+Truncating.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                        `- error: cannot pass immutable value as inout argument: literals are not mutable
114 |         #endif
115 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                                    `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 |         #endif
115 |     }
[240/1262] Compiling Swiftest StringProtocol+LongestCommonSuffix.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                        `- error: cannot pass immutable value as inout argument: literals are not mutable
114 |         #endif
115 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                                    `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 |         #endif
115 |     }
[241/1262] Compiling Swiftest KeyPathFilter.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                        `- error: cannot pass immutable value as inout argument: literals are not mutable
114 |         #endif
115 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                                    `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 |         #endif
115 |     }
[242/1262] Compiling Swiftest KeyPathBuildable.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                        `- error: cannot pass immutable value as inout argument: literals are not mutable
114 |         #endif
115 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                                    `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 |         #endif
115 |     }
[243/1262] Compiling Swiftest KeyPathValueMapOperator.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                        `- error: cannot pass immutable value as inout argument: literals are not mutable
114 |         #endif
115 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                                    `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 |         #endif
115 |     }
[244/1262] Compiling Swiftest KeyPathValuePair.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                        `- error: cannot pass immutable value as inout argument: literals are not mutable
114 |         #endif
115 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                                    `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 |         #endif
115 |     }
[245/1262] Compiling Swiftest KeyPathValuePairAssignable.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:24: error: cannot pass immutable value as inout argument: literals are not mutable
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                        `- error: cannot pass immutable value as inout argument: literals are not mutable
114 |         #endif
115 |     }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/SwiftStdlib/Extensions/String/String+BooleanTests.swift:113:36: error: 'nil' is not compatible with expected argument type 'Decimal'
111 |         return scanner.scanDecimal() != nil && scanner.isAtEnd
112 |         #else
113 |         return scanner.scanDecimal(nil) && scanner.isAtEnd
    |                                    `- error: 'nil' is not compatible with expected argument type 'Decimal'
114 |         #endif
115 |     }
[247/1262] Compiling Swiftest Collection+Lookup.swift
[248/1262] Compiling Swiftest Collection+Matrix.swift
[249/1262] Compiling Swiftest Collection+Partitioning.swift
[250/1262] Compiling Swiftest Collection+ReverseLookup.swift
[251/1262] Compiling Swiftest RangeReplaceableCollection+Affix.swift
[252/1262] Compiling Swiftest RangeReplaceableCollection+Deduplication.swift
[253/1262] Compiling Swiftest RangeReplaceableCollection+Queue.swift
[254/1262] Compiling Swiftest RangeReplaceableCollection+RemovingInstances.swift
[255/1262] Compiling Swiftest RangeReplaceableCollection+Repeat.swift
[256/1262] Compiling Swiftest RangeReplaceableCollection+Rotate.swift
[257/1262] Compiling Swiftest RangeReplaceableCollection+Stack.swift
[258/1262] Compiling Swiftest Comparable+Clamped.swift
[259/1262] Compiling Swiftest Comparable+Optionals.swift
[260/1262] Compiling Swiftest Comparable+Range.swift
[261/1262] Compiling Swiftest Dictionary+.swift
[262/1262] Compiling Swiftest Dictionary+Arithmetic.swift
[263/1262] Compiling Swiftest Dictionary+DynamicLookup.swift
[264/1262] Compiling Swiftest Dictionary+EnumKeyLookup.swift
[265/1262] Emitting module Metrics
[266/1262] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:44: error: cannot find 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                                            `- error: cannot find 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[267/1262] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:44: error: cannot find 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                                            `- error: cannot find 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[268/1262] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:44: error: cannot find 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                                            `- error: cannot find 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[269/1262] Compiling OrderedCollections OrderedDictionary+Hashable.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:44: error: cannot find 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                                            `- error: cannot find 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[270/1262] Compiling OrderedCollections OrderedDictionary+Initializers.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:44: error: cannot find 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                                            `- error: cannot find 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[271/1262] Compiling OrderedCollections OrderedDictionary+Invariants.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:44: error: cannot find 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                                            `- error: cannot find 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[272/1262] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:44: error: cannot find 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                                            `- error: cannot find 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[273/1262] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:44: error: cannot find 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                                            `- error: cannot find 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[274/1262] Compiling OrderedCollections OrderedDictionary+Sendable.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:44: error: cannot find 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                                            `- error: cannot find 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[275/1262] Compiling OrderedCollections OrderedDictionary+Sequence.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:44: error: cannot find 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                                            `- error: cannot find 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[276/1262] Compiling OrderedCollections OrderedDictionary+Values.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:44: error: cannot find 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                                            `- error: cannot find 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[277/1262] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:44: error: cannot find 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                                            `- error: cannot find 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[278/1262] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:44: error: cannot find 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                                            `- error: cannot find 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[279/1262] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:44: error: cannot find 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                                            `- error: cannot find 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[280/1262] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:44: error: cannot find 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                                            `- error: cannot find 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[281/1262] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:44: error: cannot find 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                                            `- error: cannot find 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[282/1262] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:44: error: cannot find 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                                            `- error: cannot find 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[283/1262] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:23: error: cannot find type 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                       `- error: cannot find type 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:99:44: error: cannot find 'NSDataDetector' in scope
 97 |     public func extractURLs() throws -> [URL] {
 98 |         var urls: [URL] = []
 99 |         let detector: NSDataDetector = try NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue)
    |                                            `- error: cannot find 'NSDataDetector' in scope
100 |         let text: String = self
101 |         //swiftlint:disable:next line_length
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/String/String+URL.swift:104:34: error: value of type 'NSTextCheckingResult' has no member 'url'
102 |         detector.enumerateMatches(in: text, options: [], range: NSRange(location: 0, length: text.count), using: { (result: NSTextCheckingResult?, _: NSRegularExpression.MatchingFlags, _: UnsafeMutablePointer<ObjCBool>) -> Void in
103 |             if let result = result,
104 |                 let url = result.url {
    |                                  `- error: value of type 'NSTextCheckingResult' has no member 'url'
105 |                 urls.append(url)
106 |             }
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/URL/URLRequest+.swift:13:18: error: cannot find type 'URLRequest' in scope
11 |
12 | // MARK: - Initializers
13 | public extension URLRequest {
   |                  `- error: cannot find type 'URLRequest' in scope
14 |
15 |     /// Swiftest: Create URLRequest from URL string.
/host/spi-builder-workspace/.build/checkouts/Swiftest/Sources/Swiftest/Foundation/Extensions/UserDefaults+.swift:51:26: error: cannot find 'value' in scope
49 |     /// - Returns: Codable object for key (if exists).
50 |     func object<T: Codable>(_ type: T.Type, with key: String, usingDecoder decoder: JSONDecoder = JSONDecoder()) -> T? {
51 |         guard let data = value(forKey: key) as? Data else { return nil }
   |                          `- error: cannot find 'value' in scope
52 |         return try? decoder.decode(type.self, from: data)
53 |     }
[284/1262] Compiling _RopeModule RopeElement.swift
[285/1262] Compiling _RopeModule RopeMetric.swift
[286/1262] Compiling _RopeModule RopeSummary.swift
[287/1262] Compiling _RopeModule _RopeItem.swift
[288/1262] Compiling _RopeModule _RopePath.swift
[289/1262] Compiling _RopeModule BigString+Chunk+Breaks.swift
[290/1262] Compiling _RopeModule BigString+Chunk+Character.swift
[291/1262] Compiling _RopeModule BigString+Chunk+Counts.swift
[292/1262] Compiling _RopeModule BigString+Chunk+Description.swift
[293/1262] Compiling _RopeModule BigString+Chunk+Index.swift
[294/1262] Compiling _RopeModule BigString+Chunk+RopeElement.swift
[295/1262] Compiling _RopeModule BigString+Chunk+Splitting.swift
[296/1262] Compiling _RopeModule BigString+Chunk+UTF16.swift
[297/1262] Compiling _RopeModule BigString+Chunk+UTF8.swift
[298/1262] Compiling _RopeModule BigString+Chunk+UnicodeScalar.swift
[299/1262] Compiling Swiftest Collection+.swift
[300/1262] Compiling Swiftest Collection+Filtering.swift
[301/1262] Compiling Swiftest Collection+Indices.swift
[302/1262] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[303/1262] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[304/1262] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[305/1262] Compiling OrderedCollections OrderedDictionary+Elements.swift
[306/1262] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[307/1262] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[308/1262] Compiling OrderedCollections OrderedDictionary.swift
[309/1262] Compiling OrderedCollections OrderedSet+Codable.swift
[321/1279] Emitting module UnixSignals
[322/1279] Compiling Metrics Metrics.swift
[323/1280] Compiling HeapModule Heap.swift
[325/1280] Compiling HeapModule _HeapNode.swift
[326/1280] Compiling HeapModule Heap+UnsafeHandle.swift
[327/1280] Emitting module HeapModule
[329/1281] Compiling Tracing InstrumentationSystem+Tracing.swift
[330/1287] Compiling UnixSignals UnixSignal.swift
[331/1287] Compiling UnixSignals UnixSignalsSequence.swift
[333/1301] Compiling Tracing TracingTime.swift
[334/1397] 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.3-RELEASE_android.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'
FoundationEssentials.pow:2:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | 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.3-RELEASE_android.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 |
[335/1397] 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.3-RELEASE_android.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'
FoundationEssentials.pow:2:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | 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.3-RELEASE_android.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 |
[336/1397] 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.3-RELEASE_android.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'
FoundationEssentials.pow:2:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | 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.3-RELEASE_android.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 |
[337/1397] 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.3-RELEASE_android.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'
FoundationEssentials.pow:2:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | 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.3-RELEASE_android.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 |
[338/1397] 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.3-RELEASE_android.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'
FoundationEssentials.pow:2:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | 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.3-RELEASE_android.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 |
[339/1397] 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.3-RELEASE_android.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'
FoundationEssentials.pow:2:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | 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.3-RELEASE_android.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 |
[340/1397] 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.3-RELEASE_android.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'
FoundationEssentials.pow:2:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | 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.3-RELEASE_android.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 |
[341/1397] 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.3-RELEASE_android.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'
FoundationEssentials.pow:2:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | 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.3-RELEASE_android.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 |
[342/1397] 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.3-RELEASE_android.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'
FoundationEssentials.pow:2:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | 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.3-RELEASE_android.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 |
[343/1397] 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.3-RELEASE_android.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'
FoundationEssentials.pow:2:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | 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.3-RELEASE_android.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 |
[344/1397] 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.3-RELEASE_android.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'
FoundationEssentials.pow:2:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | 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.3-RELEASE_android.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 |
[345/1397] 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.3-RELEASE_android.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'
FoundationEssentials.pow:2:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | 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.3-RELEASE_android.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 |
[346/1397] 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.3-RELEASE_android.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'
FoundationEssentials.pow:2:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | 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.3-RELEASE_android.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 |
[347/1397] 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.3-RELEASE_android.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'
FoundationEssentials.pow:2:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | 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.3-RELEASE_android.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 |
[348/1397] 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.3-RELEASE_android.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'
FoundationEssentials.pow:2:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | 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.3-RELEASE_android.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 |
[349/1397] 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.3-RELEASE_android.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'
FoundationEssentials.pow:2:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | 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.3-RELEASE_android.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 |
[350/1397] 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.3-RELEASE_android.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'
FoundationEssentials.pow:2:13: note: 'pow' produces 'Decimal', not the expected contextual result type 'Float'
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | 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.3-RELEASE_android.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 |
[351/1397] Compiling Tracing TracerProtocol.swift
[352/1397] Compiling Tracing NoOpTracer.swift
BUILD FAILURE 6.3 android