The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build Swiftlier, reference 6.1.3 (e1f789), with Swift 6.1 for Android on 27 May 2025 06:20:42 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1

Build Log

54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
   |               `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 |     let session: TestURLSession
57 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
   |               `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 |     let session: TestURLSession
71 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
   |               `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 |     let session: TestURLSession
85 |     let task: TestURLSession.StartedTask
[31/65] Compiling Swiftlier DelimiterStreamReader.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/Date+Testable.swift:11:13: warning: var 'faked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 | import Foundation
10 |
11 | private var faked: (base: Date, started: Date)?
   |             |- warning: var 'faked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'faked' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make var 'faked' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | extension Date {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
   |          `- note: expected sendability to match requirement here
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
   |          `- note: expected sendability to match requirement here
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   |          `- note: expected sendability to match requirement here
18 | }
19 |
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
   |               `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 |     let session: TestURLSession
57 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
   |               `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 |     let session: TestURLSession
71 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
   |               `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 |     let session: TestURLSession
85 |     let task: TestURLSession.StartedTask
[32/65] Compiling Swiftlier StreamReader.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/Date+Testable.swift:11:13: warning: var 'faked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 | import Foundation
10 |
11 | private var faked: (base: Date, started: Date)?
   |             |- warning: var 'faked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'faked' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make var 'faked' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | extension Date {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
   |          `- note: expected sendability to match requirement here
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
   |          `- note: expected sendability to match requirement here
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   |          `- note: expected sendability to match requirement here
18 | }
19 |
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
   |               `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 |     let session: TestURLSession
57 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
   |               `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 |     let session: TestURLSession
71 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
   |               `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 |     let session: TestURLSession
85 |     let task: TestURLSession.StartedTask
[33/65] Compiling Swiftlier Date+Testable.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/Date+Testable.swift:11:13: warning: var 'faked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 | import Foundation
10 |
11 | private var faked: (base: Date, started: Date)?
   |             |- warning: var 'faked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'faked' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make var 'faked' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | extension Date {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
   |          `- note: expected sendability to match requirement here
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
   |          `- note: expected sendability to match requirement here
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   |          `- note: expected sendability to match requirement here
18 | }
19 |
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
   |               `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 |     let session: TestURLSession
57 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
   |               `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 |     let session: TestURLSession
71 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
   |               `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 |     let session: TestURLSession
85 |     let task: TestURLSession.StartedTask
[34/65] Compiling Swiftlier URLSession+Testing.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/Date+Testable.swift:11:13: warning: var 'faked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 | import Foundation
10 |
11 | private var faked: (base: Date, started: Date)?
   |             |- warning: var 'faked' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'faked' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make var 'faked' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | extension Date {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
   |          `- note: expected sendability to match requirement here
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
   |          `- note: expected sendability to match requirement here
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   |          `- note: expected sendability to match requirement here
18 | }
19 |
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
   |               `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 |     let session: TestURLSession
57 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
   |               `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 |     let session: TestURLSession
71 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
   |               `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 |     let session: TestURLSession
85 |     let task: TestURLSession.StartedTask
[35/65] Compiling Swiftlier Age.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:21:12: warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | }
 20 |
 21 | public let π = Angle(radians: Float.pi)
    |            |- warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: add '@MainActor' to make let 'π' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |
 23 | public struct Angle<Value: AngleValue>: Equatable, Comparable {
    |               `- note: consider making generic struct 'Angle' conform to the 'Sendable' protocol
 24 |     public enum Unit {
 25 |         case radians
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no exact matches in call to global function 'sin'
163 |     }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 |     }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no exact matches in call to global function 'cos'
167 |     }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 |     }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
[36/65] Compiling Swiftlier AlwaysEqual.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:21:12: warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | }
 20 |
 21 | public let π = Angle(radians: Float.pi)
    |            |- warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: add '@MainActor' to make let 'π' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |
 23 | public struct Angle<Value: AngleValue>: Equatable, Comparable {
    |               `- note: consider making generic struct 'Angle' conform to the 'Sendable' protocol
 24 |     public enum Unit {
 25 |         case radians
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no exact matches in call to global function 'sin'
163 |     }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 |     }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no exact matches in call to global function 'cos'
167 |     }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 |     }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
[37/65] Compiling Swiftlier Angle.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:21:12: warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | }
 20 |
 21 | public let π = Angle(radians: Float.pi)
    |            |- warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: add '@MainActor' to make let 'π' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |
 23 | public struct Angle<Value: AngleValue>: Equatable, Comparable {
    |               `- note: consider making generic struct 'Angle' conform to the 'Sendable' protocol
 24 |     public enum Unit {
 25 |         case radians
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no exact matches in call to global function 'sin'
163 |     }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 |     }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no exact matches in call to global function 'cos'
167 |     }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 |     }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
[38/65] Compiling Swiftlier Day.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:21:12: warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | }
 20 |
 21 | public let π = Angle(radians: Float.pi)
    |            |- warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: add '@MainActor' to make let 'π' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |
 23 | public struct Angle<Value: AngleValue>: Equatable, Comparable {
    |               `- note: consider making generic struct 'Angle' conform to the 'Sendable' protocol
 24 |     public enum Unit {
 25 |         case radians
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no exact matches in call to global function 'sin'
163 |     }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 |     }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no exact matches in call to global function 'cos'
167 |     }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 |     }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
[39/65] Compiling Swiftlier EmailAddress.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:21:12: warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | }
 20 |
 21 | public let π = Angle(radians: Float.pi)
    |            |- warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: add '@MainActor' to make let 'π' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |
 23 | public struct Angle<Value: AngleValue>: Equatable, Comparable {
    |               `- note: consider making generic struct 'Angle' conform to the 'Sendable' protocol
 24 |     public enum Unit {
 25 |         case radians
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no exact matches in call to global function 'sin'
163 |     }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 |     }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no exact matches in call to global function 'cos'
167 |     }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 |     }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
[40/65] Compiling Swiftlier HTML.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:21:12: warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | }
 20 |
 21 | public let π = Angle(radians: Float.pi)
    |            |- warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: add '@MainActor' to make let 'π' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |
 23 | public struct Angle<Value: AngleValue>: Equatable, Comparable {
    |               `- note: consider making generic struct 'Angle' conform to the 'Sendable' protocol
 24 |     public enum Unit {
 25 |         case radians
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no exact matches in call to global function 'sin'
163 |     }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 |     }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no exact matches in call to global function 'cos'
167 |     }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 |     }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
[41/65] Compiling Swiftlier Mass.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:21:12: warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | }
 20 |
 21 | public let π = Angle(radians: Float.pi)
    |            |- warning: let 'π' is not concurrency-safe because non-'Sendable' type 'Angle<Float>' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: add '@MainActor' to make let 'π' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |
 23 | public struct Angle<Value: AngleValue>: Equatable, Comparable {
    |               `- note: consider making generic struct 'Angle' conform to the 'Sendable' protocol
 24 |     public enum Unit {
 25 |         case radians
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no exact matches in call to global function 'sin'
163 |     }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 |     }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no exact matches in call to global function 'cos'
167 |     }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 |     }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
[42/65] Compiling Swiftlier ValueTypePersistenceService.swift
[43/65] Compiling Swiftlier Bool+Formatting.swift
[44/65] Compiling Swiftlier Data+Base64.swift
[45/65] Compiling Swiftlier Date+Formatting.swift
[46/65] Compiling Swiftlier Double+Formatting.swift
[47/65] Compiling Swiftlier HeartRateFormatter.swift
[48/65] Compiling Swiftlier TimeInterval+Formatting.swift
[49/65] Compiling Swiftlier BinarySearchTree.swift
[50/65] Compiling Swiftlier Observable.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:36:23: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     Options for observing an observable
 28 | */
 29 | public struct ObservationOptions: OptionSet  {
    |               `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
 30 |     public let rawValue: Int
 31 |
    :
 34 |     }
 35 |
 36 |     public static let initial = ObservationOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
 38 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:37:23: warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     Options for observing an observable
 28 | */
 29 | public struct ObservationOptions: OptionSet  {
    |               `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
 30 |     public let rawValue: Int
 31 |
    :
 35 |
 36 |     public static let initial = ObservationOptions(rawValue: 1 << 0)
 37 |     public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
    |                       |- warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'onlyOnce' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 | }
 39 |
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 28 |  Store a value that can be observed by external objects
 29 |  */
 30 | public protocol Referenceable: class {}
    |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 31 | public final class ObservableReference<T: Referenceable> {
 32 |     public typealias Handler = () -> ()
[51/65] Compiling Swiftlier ObservableArray.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:36:23: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     Options for observing an observable
 28 | */
 29 | public struct ObservationOptions: OptionSet  {
    |               `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
 30 |     public let rawValue: Int
 31 |
    :
 34 |     }
 35 |
 36 |     public static let initial = ObservationOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
 38 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:37:23: warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     Options for observing an observable
 28 | */
 29 | public struct ObservationOptions: OptionSet  {
    |               `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
 30 |     public let rawValue: Int
 31 |
    :
 35 |
 36 |     public static let initial = ObservationOptions(rawValue: 1 << 0)
 37 |     public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
    |                       |- warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'onlyOnce' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 | }
 39 |
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 28 |  Store a value that can be observed by external objects
 29 |  */
 30 | public protocol Referenceable: class {}
    |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 31 | public final class ObservableReference<T: Referenceable> {
 32 |     public typealias Handler = () -> ()
[52/65] Compiling Swiftlier ObservableDictionary.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:36:23: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     Options for observing an observable
 28 | */
 29 | public struct ObservationOptions: OptionSet  {
    |               `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
 30 |     public let rawValue: Int
 31 |
    :
 34 |     }
 35 |
 36 |     public static let initial = ObservationOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
 38 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:37:23: warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     Options for observing an observable
 28 | */
 29 | public struct ObservationOptions: OptionSet  {
    |               `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
 30 |     public let rawValue: Int
 31 |
    :
 35 |
 36 |     public static let initial = ObservationOptions(rawValue: 1 << 0)
 37 |     public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
    |                       |- warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'onlyOnce' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 | }
 39 |
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 28 |  Store a value that can be observed by external objects
 29 |  */
 30 | public protocol Referenceable: class {}
    |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 31 | public final class ObservableReference<T: Referenceable> {
 32 |     public typealias Handler = () -> ()
[53/65] Compiling Swiftlier ObservableReference.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:36:23: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     Options for observing an observable
 28 | */
 29 | public struct ObservationOptions: OptionSet  {
    |               `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
 30 |     public let rawValue: Int
 31 |
    :
 34 |     }
 35 |
 36 |     public static let initial = ObservationOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
 38 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:37:23: warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     Options for observing an observable
 28 | */
 29 | public struct ObservationOptions: OptionSet  {
    |               `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
 30 |     public let rawValue: Int
 31 |
    :
 35 |
 36 |     public static let initial = ObservationOptions(rawValue: 1 << 0)
 37 |     public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
    |                       |- warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'onlyOnce' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 | }
 39 |
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 28 |  Store a value that can be observed by external objects
 29 |  */
 30 | public protocol Referenceable: class {}
    |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 31 | public final class ObservableReference<T: Referenceable> {
 32 |     public typealias Handler = () -> ()
[54/65] Compiling Swiftlier JSON.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:36:23: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     Options for observing an observable
 28 | */
 29 | public struct ObservationOptions: OptionSet  {
    |               `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
 30 |     public let rawValue: Int
 31 |
    :
 34 |     }
 35 |
 36 |     public static let initial = ObservationOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
 38 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:37:23: warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     Options for observing an observable
 28 | */
 29 | public struct ObservationOptions: OptionSet  {
    |               `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
 30 |     public let rawValue: Int
 31 |
    :
 35 |
 36 |     public static let initial = ObservationOptions(rawValue: 1 << 0)
 37 |     public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
    |                       |- warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'onlyOnce' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 | }
 39 |
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 28 |  Store a value that can be observed by external objects
 29 |  */
 30 | public protocol Referenceable: class {}
    |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 31 | public final class ObservableReference<T: Referenceable> {
 32 |     public typealias Handler = () -> ()
[55/65] Compiling Swiftlier NativeTypesStructured.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:36:23: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     Options for observing an observable
 28 | */
 29 | public struct ObservationOptions: OptionSet  {
    |               `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
 30 |     public let rawValue: Int
 31 |
    :
 34 |     }
 35 |
 36 |     public static let initial = ObservationOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
 38 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:37:23: warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     Options for observing an observable
 28 | */
 29 | public struct ObservationOptions: OptionSet  {
    |               `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
 30 |     public let rawValue: Int
 31 |
    :
 35 |
 36 |     public static let initial = ObservationOptions(rawValue: 1 << 0)
 37 |     public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
    |                       |- warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'onlyOnce' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 | }
 39 |
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 28 |  Store a value that can be observed by external objects
 29 |  */
 30 | public protocol Referenceable: class {}
    |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 31 | public final class ObservableReference<T: Referenceable> {
 32 |     public typealias Handler = () -> ()
[56/65] Compiling Swiftlier Structured.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:36:23: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     Options for observing an observable
 28 | */
 29 | public struct ObservationOptions: OptionSet  {
    |               `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
 30 |     public let rawValue: Int
 31 |
    :
 34 |     }
 35 |
 36 |     public static let initial = ObservationOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
 38 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:37:23: warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     Options for observing an observable
 28 | */
 29 | public struct ObservationOptions: OptionSet  {
    |               `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
 30 |     public let rawValue: Int
 31 |
    :
 35 |
 36 |     public static let initial = ObservationOptions(rawValue: 1 << 0)
 37 |     public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
    |                       |- warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'onlyOnce' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 | }
 39 |
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 28 |  Store a value that can be observed by external objects
 29 |  */
 30 | public protocol Referenceable: class {}
    |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 31 | public final class ObservableReference<T: Referenceable> {
 32 |     public typealias Handler = () -> ()
[57/65] Compiling Swiftlier XML.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:36:23: warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     Options for observing an observable
 28 | */
 29 | public struct ObservationOptions: OptionSet  {
    |               `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
 30 |     public let rawValue: Int
 31 |
    :
 34 |     }
 35 |
 36 |     public static let initial = ObservationOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'initial' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'initial' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |     public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
 38 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/Observable.swift:37:23: warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 27 |     Options for observing an observable
 28 | */
 29 | public struct ObservationOptions: OptionSet  {
    |               `- note: consider making struct 'ObservationOptions' conform to the 'Sendable' protocol
 30 |     public let rawValue: Int
 31 |
    :
 35 |
 36 |     public static let initial = ObservationOptions(rawValue: 1 << 0)
 37 |     public static let onlyOnce = ObservationOptions(rawValue: 1 << 1)
    |                       |- warning: static property 'onlyOnce' is not concurrency-safe because non-'Sendable' type 'ObservationOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'onlyOnce' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 | }
 39 |
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 28 |  Store a value that can be observed by external objects
 29 |  */
 30 | public protocol Referenceable: class {}
    |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 31 | public final class ObservableReference<T: Referenceable> {
 32 |     public typealias Handler = () -> ()
[58/65] Compiling Swiftlier LimitedQueue.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 12 |     Protcol all events must implemenet to work with EventCenter
 13 | */
 14 | public protocol EventType: class {
    |                            `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 15 |     associatedtype CallbackParam
 16 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:127:20: warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 |
126 |     struct Static {
127 |         static var DefaultInsance = EventCenter()
    |                    |- warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'DefaultInsance' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: add '@MainActor' to make static property 'DefaultInsance' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     }
129 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:30: warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |                     if let operationQueue = spec.operationQueue {
 52 |                         operationQueue.addOperation {
 53 |                             (spec.callback as! (E.CallbackParam) -> ())(params)
    |                              `- warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 54 |                         }
 55 |                     }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:73: warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |                     if let operationQueue = spec.operationQueue {
 52 |                         operationQueue.addOperation {
 53 |                             (spec.callback as! (E.CallbackParam) -> ())(params)
    |                                                                         `- warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 54 |                         }
 55 |                     }
[59/65] Compiling Swiftlier OrderedDictionary.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 12 |     Protcol all events must implemenet to work with EventCenter
 13 | */
 14 | public protocol EventType: class {
    |                            `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 15 |     associatedtype CallbackParam
 16 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:127:20: warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 |
126 |     struct Static {
127 |         static var DefaultInsance = EventCenter()
    |                    |- warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'DefaultInsance' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: add '@MainActor' to make static property 'DefaultInsance' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     }
129 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:30: warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |                     if let operationQueue = spec.operationQueue {
 52 |                         operationQueue.addOperation {
 53 |                             (spec.callback as! (E.CallbackParam) -> ())(params)
    |                              `- warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 54 |                         }
 55 |                     }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:73: warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |                     if let operationQueue = spec.operationQueue {
 52 |                         operationQueue.addOperation {
 53 |                             (spec.callback as! (E.CallbackParam) -> ())(params)
    |                                                                         `- warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 54 |                         }
 55 |                     }
[60/65] Compiling Swiftlier PatchyRange.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 12 |     Protcol all events must implemenet to work with EventCenter
 13 | */
 14 | public protocol EventType: class {
    |                            `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 15 |     associatedtype CallbackParam
 16 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:127:20: warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 |
126 |     struct Static {
127 |         static var DefaultInsance = EventCenter()
    |                    |- warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'DefaultInsance' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: add '@MainActor' to make static property 'DefaultInsance' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     }
129 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:30: warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |                     if let operationQueue = spec.operationQueue {
 52 |                         operationQueue.addOperation {
 53 |                             (spec.callback as! (E.CallbackParam) -> ())(params)
    |                              `- warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 54 |                         }
 55 |                     }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:73: warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |                     if let operationQueue = spec.operationQueue {
 52 |                         operationQueue.addOperation {
 53 |                             (spec.callback as! (E.CallbackParam) -> ())(params)
    |                                                                         `- warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 54 |                         }
 55 |                     }
[61/65] Compiling Swiftlier SelectableValue.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 12 |     Protcol all events must implemenet to work with EventCenter
 13 | */
 14 | public protocol EventType: class {
    |                            `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 15 |     associatedtype CallbackParam
 16 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:127:20: warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 |
126 |     struct Static {
127 |         static var DefaultInsance = EventCenter()
    |                    |- warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'DefaultInsance' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: add '@MainActor' to make static property 'DefaultInsance' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     }
129 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:30: warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |                     if let operationQueue = spec.operationQueue {
 52 |                         operationQueue.addOperation {
 53 |                             (spec.callback as! (E.CallbackParam) -> ())(params)
    |                              `- warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 54 |                         }
 55 |                     }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:73: warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |                     if let operationQueue = spec.operationQueue {
 52 |                         operationQueue.addOperation {
 53 |                             (spec.callback as! (E.CallbackParam) -> ())(params)
    |                                                                         `- warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 54 |                         }
 55 |                     }
[62/65] Compiling Swiftlier Syncable.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 12 |     Protcol all events must implemenet to work with EventCenter
 13 | */
 14 | public protocol EventType: class {
    |                            `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 15 |     associatedtype CallbackParam
 16 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:127:20: warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 |
126 |     struct Static {
127 |         static var DefaultInsance = EventCenter()
    |                    |- warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'DefaultInsance' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: add '@MainActor' to make static property 'DefaultInsance' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     }
129 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:30: warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |                     if let operationQueue = spec.operationQueue {
 52 |                         operationQueue.addOperation {
 53 |                             (spec.callback as! (E.CallbackParam) -> ())(params)
    |                              `- warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 54 |                         }
 55 |                     }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:73: warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |                     if let operationQueue = spec.operationQueue {
 52 |                         operationQueue.addOperation {
 53 |                             (spec.callback as! (E.CallbackParam) -> ())(params)
    |                                                                         `- warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 54 |                         }
 55 |                     }
[63/65] Compiling Swiftlier WeakWrapper.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 12 |     Protcol all events must implemenet to work with EventCenter
 13 | */
 14 | public protocol EventType: class {
    |                            `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 15 |     associatedtype CallbackParam
 16 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:127:20: warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 |
126 |     struct Static {
127 |         static var DefaultInsance = EventCenter()
    |                    |- warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'DefaultInsance' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: add '@MainActor' to make static property 'DefaultInsance' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     }
129 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:30: warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |                     if let operationQueue = spec.operationQueue {
 52 |                         operationQueue.addOperation {
 53 |                             (spec.callback as! (E.CallbackParam) -> ())(params)
    |                              `- warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 54 |                         }
 55 |                     }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:73: warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |                     if let operationQueue = spec.operationQueue {
 52 |                         operationQueue.addOperation {
 53 |                             (spec.callback as! (E.CallbackParam) -> ())(params)
    |                                                                         `- warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 54 |                         }
 55 |                     }
[64/65] Compiling Swiftlier EventCenter.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 12 |     Protcol all events must implemenet to work with EventCenter
 13 | */
 14 | public protocol EventType: class {
    |                            `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 15 |     associatedtype CallbackParam
 16 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:127:20: warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 |
126 |     struct Static {
127 |         static var DefaultInsance = EventCenter()
    |                    |- warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'DefaultInsance' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: add '@MainActor' to make static property 'DefaultInsance' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     }
129 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:30: warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |                     if let operationQueue = spec.operationQueue {
 52 |                         operationQueue.addOperation {
 53 |                             (spec.callback as! (E.CallbackParam) -> ())(params)
    |                              `- warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 54 |                         }
 55 |                     }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:73: warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |                     if let operationQueue = spec.operationQueue {
 52 |                         operationQueue.addOperation {
 53 |                             (spec.callback as! (E.CallbackParam) -> ())(params)
    |                                                                         `- warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 54 |                         }
 55 |                     }
[65/65] Compiling Swiftlier MultiCallback.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 12 |     Protcol all events must implemenet to work with EventCenter
 13 | */
 14 | public protocol EventType: class {
    |                            `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 15 |     associatedtype CallbackParam
 16 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:127:20: warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
125 |
126 |     struct Static {
127 |         static var DefaultInsance = EventCenter()
    |                    |- warning: static property 'DefaultInsance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'DefaultInsance' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: add '@MainActor' to make static property 'DefaultInsance' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     }
129 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:30: warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |                     if let operationQueue = spec.operationQueue {
 52 |                         operationQueue.addOperation {
 53 |                             (spec.callback as! (E.CallbackParam) -> ())(params)
    |                              `- warning: capture of 'spec' with non-sendable type 'EventCenter.CallbackSpec' (aka '(callback: Any, operationQueue: Optional<OperationQueue>)') in a '@Sendable' closure; this is an error in the Swift 6 language mode
 54 |                         }
 55 |                     }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:53:73: warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 51 |                     if let operationQueue = spec.operationQueue {
 52 |                         operationQueue.addOperation {
 53 |                             (spec.callback as! (E.CallbackParam) -> ())(params)
    |                                                                         `- warning: capture of 'params' with non-sendable type 'E.CallbackParam' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 54 |                         }
 55 |                     }
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:9f3c606dcd2a4f06d17ba472aa533c43685ba7ba19a5c9bc23518a066eb7f86a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/57] Emitting module Swiftlier
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 12 |     Protcol all events must implemenet to work with EventCenter
 13 | */
 14 | public protocol EventType: class {
    |                            `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 15 |     associatedtype CallbackParam
 16 | }
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 28 |  Store a value that can be observed by external objects
 29 |  */
 30 | public protocol Referenceable: class {}
    |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 31 | public final class ObservableReference<T: Referenceable> {
 32 |     public typealias Handler = () -> ()
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
   |          `- note: expected sendability to match requirement here
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
   |          `- note: expected sendability to match requirement here
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   |          `- note: expected sendability to match requirement here
18 | }
19 |
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
   |               `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 |     let session: TestURLSession
57 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
   |               `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 |     let session: TestURLSession
71 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
   |               `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 |     let session: TestURLSession
85 |     let task: TestURLSession.StartedTask
[3/64] Compiling Swiftlier Price.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
   |          `- note: expected sendability to match requirement here
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
   |          `- note: expected sendability to match requirement here
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   |          `- note: expected sendability to match requirement here
18 | }
19 |
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
   |               `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 |     let session: TestURLSession
57 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
   |               `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 |     let session: TestURLSession
71 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
   |               `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 |     let session: TestURLSession
85 |     let task: TestURLSession.StartedTask
[4/64] Compiling Swiftlier UniquelyIdentifiable.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
   |          `- note: expected sendability to match requirement here
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
   |          `- note: expected sendability to match requirement here
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   |          `- note: expected sendability to match requirement here
18 | }
19 |
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
   |               `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 |     let session: TestURLSession
57 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
   |               `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 |     let session: TestURLSession
71 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
   |               `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 |     let session: TestURLSession
85 |     let task: TestURLSession.StartedTask
[5/64] Compiling Swiftlier CSVStreamReader.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
   |          `- note: expected sendability to match requirement here
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
   |          `- note: expected sendability to match requirement here
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   |          `- note: expected sendability to match requirement here
18 | }
19 |
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
   |               `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 |     let session: TestURLSession
57 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
   |               `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 |     let session: TestURLSession
71 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
   |               `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 |     let session: TestURLSession
85 |     let task: TestURLSession.StartedTask
[6/64] Compiling Swiftlier DelimiterStreamReader.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
   |          `- note: expected sendability to match requirement here
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
   |          `- note: expected sendability to match requirement here
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   |          `- note: expected sendability to match requirement here
18 | }
19 |
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
   |               `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 |     let session: TestURLSession
57 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
   |               `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 |     let session: TestURLSession
71 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
   |               `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 |     let session: TestURLSession
85 |     let task: TestURLSession.StartedTask
[7/64] Compiling Swiftlier StreamReader.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
   |          `- note: expected sendability to match requirement here
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
   |          `- note: expected sendability to match requirement here
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   |          `- note: expected sendability to match requirement here
18 | }
19 |
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
   |               `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 |     let session: TestURLSession
57 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
   |               `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 |     let session: TestURLSession
71 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
   |               `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 |     let session: TestURLSession
85 |     let task: TestURLSession.StartedTask
[8/64] Compiling Swiftlier Date+Testable.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
   |          `- note: expected sendability to match requirement here
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
   |          `- note: expected sendability to match requirement here
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   |          `- note: expected sendability to match requirement here
18 | }
19 |
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
   |               `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 |     let session: TestURLSession
57 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
   |               `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 |     let session: TestURLSession
71 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
   |               `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 |     let session: TestURLSession
85 |     let task: TestURLSession.StartedTask
[9/64] Compiling Swiftlier URLSession+Testing.swift
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
13 |
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
   |          `- note: expected sendability to match requirement here
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'uploadTask(with:fromFile:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
14 | public protocol AnyURLSession {
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
   |          `- note: expected sendability to match requirement here
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
18 | }
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'downloadTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:53:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
15 |     func uploadTask(with request: URLRequest, fromFile fileURL: URL, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionUploadTask
16 |     func downloadTask(with url: URL, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) -> URLSessionDownloadTask
17 |     func dataTask(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
   |          `- note: expected sendability to match requirement here
18 | }
19 |
   :
51 | }
52 |
53 | extension URLSession: AnyURLSession {}
   | `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'AnyURLSession'; this is an error in the Swift 6 language mode
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:55:15: warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
53 | extension URLSession: AnyURLSession {}
54 |
55 | private class TestURLSessionUploadTask: URLSessionUploadTask {
   |               `- warning: class 'TestURLSessionUploadTask' must restate inherited '@unchecked Sendable' conformance
56 |     let session: TestURLSession
57 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:69:15: warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
67 | }
68 |
69 | private class TestURLSessionDownloadTask: URLSessionDownloadTask {
   |               `- warning: class 'TestURLSessionDownloadTask' must restate inherited '@unchecked Sendable' conformance
70 |     let session: TestURLSession
71 |     let task: TestURLSession.StartedTask
/host/spi-builder-workspace/Sources/Swiftlier/Testing/URLSession+Testing.swift:83:15: warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class TestURLSessionDataTask: URLSessionDataTask {
   |               `- warning: class 'TestURLSessionDataTask' must restate inherited '@unchecked Sendable' conformance
84 |     let session: TestURLSession
85 |     let task: TestURLSession.StartedTask
[10/64] Compiling Swiftlier Observable.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 28 |  Store a value that can be observed by external objects
 29 |  */
 30 | public protocol Referenceable: class {}
    |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 31 | public final class ObservableReference<T: Referenceable> {
 32 |     public typealias Handler = () -> ()
[11/64] Compiling Swiftlier ObservableArray.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 28 |  Store a value that can be observed by external objects
 29 |  */
 30 | public protocol Referenceable: class {}
    |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 31 | public final class ObservableReference<T: Referenceable> {
 32 |     public typealias Handler = () -> ()
[12/64] Compiling Swiftlier ObservableDictionary.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 28 |  Store a value that can be observed by external objects
 29 |  */
 30 | public protocol Referenceable: class {}
    |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 31 | public final class ObservableReference<T: Referenceable> {
 32 |     public typealias Handler = () -> ()
[13/64] Compiling Swiftlier ObservableReference.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 28 |  Store a value that can be observed by external objects
 29 |  */
 30 | public protocol Referenceable: class {}
    |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 31 | public final class ObservableReference<T: Referenceable> {
 32 |     public typealias Handler = () -> ()
[14/64] Compiling Swiftlier JSON.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 28 |  Store a value that can be observed by external objects
 29 |  */
 30 | public protocol Referenceable: class {}
    |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 31 | public final class ObservableReference<T: Referenceable> {
 32 |     public typealias Handler = () -> ()
[15/64] Compiling Swiftlier NativeTypesStructured.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 28 |  Store a value that can be observed by external objects
 29 |  */
 30 | public protocol Referenceable: class {}
    |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 31 | public final class ObservableReference<T: Referenceable> {
 32 |     public typealias Handler = () -> ()
[16/64] Compiling Swiftlier Structured.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 28 |  Store a value that can be observed by external objects
 29 |  */
 30 | public protocol Referenceable: class {}
    |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 31 | public final class ObservableReference<T: Referenceable> {
 32 |     public typealias Handler = () -> ()
[17/64] Compiling Swiftlier XML.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/ObservableReference.swift:30:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 28 |  Store a value that can be observed by external objects
 29 |  */
 30 | public protocol Referenceable: class {}
    |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 31 | public final class ObservableReference<T: Referenceable> {
 32 |     public typealias Handler = () -> ()
[18/64] Compiling Swiftlier LimitedQueue.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 12 |     Protcol all events must implemenet to work with EventCenter
 13 | */
 14 | public protocol EventType: class {
    |                            `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 15 |     associatedtype CallbackParam
 16 | }
[19/64] Compiling Swiftlier OrderedDictionary.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 12 |     Protcol all events must implemenet to work with EventCenter
 13 | */
 14 | public protocol EventType: class {
    |                            `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 15 |     associatedtype CallbackParam
 16 | }
[20/64] Compiling Swiftlier PatchyRange.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 12 |     Protcol all events must implemenet to work with EventCenter
 13 | */
 14 | public protocol EventType: class {
    |                            `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 15 |     associatedtype CallbackParam
 16 | }
[21/64] Compiling Swiftlier SelectableValue.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 12 |     Protcol all events must implemenet to work with EventCenter
 13 | */
 14 | public protocol EventType: class {
    |                            `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 15 |     associatedtype CallbackParam
 16 | }
[22/64] Compiling Swiftlier Syncable.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 12 |     Protcol all events must implemenet to work with EventCenter
 13 | */
 14 | public protocol EventType: class {
    |                            `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 15 |     associatedtype CallbackParam
 16 | }
[23/64] Compiling Swiftlier WeakWrapper.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 12 |     Protcol all events must implemenet to work with EventCenter
 13 | */
 14 | public protocol EventType: class {
    |                            `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 15 |     associatedtype CallbackParam
 16 | }
[24/64] Compiling Swiftlier EventCenter.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 12 |     Protcol all events must implemenet to work with EventCenter
 13 | */
 14 | public protocol EventType: class {
    |                            `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 15 |     associatedtype CallbackParam
 16 | }
[25/64] Compiling Swiftlier MultiCallback.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Observable/EventCenter.swift:14:28: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 12 |     Protcol all events must implemenet to work with EventCenter
 13 | */
 14 | public protocol EventType: class {
    |                            `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 15 |     associatedtype CallbackParam
 16 | }
[26/64] Compiling Swiftlier Date+Helpers.swift
/host/spi-builder-workspace/Sources/Swiftlier/Enhancements/DispatchQueue+Enhancements.swift:19:50: warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
15 |     ///     - seconds: Number of seconds to wait to perform the work
16 |     ///     - work: Work to execute after delay
17 |     public func asyncAfter(seconds: TimeInterval, execute work: @escaping @convention(block) () -> ()) {
   |                                                           `- note: parameter 'work' is implicitly non-sendable
18 |         let time = DispatchTime.now() + seconds
19 |         self.asyncAfter(deadline: time, execute: work)
   |                                                  `- warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
20 |     }
21 | }
[27/64] Compiling Swiftlier DispatchQueue+Enhancements.swift
/host/spi-builder-workspace/Sources/Swiftlier/Enhancements/DispatchQueue+Enhancements.swift:19:50: warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
15 |     ///     - seconds: Number of seconds to wait to perform the work
16 |     ///     - work: Work to execute after delay
17 |     public func asyncAfter(seconds: TimeInterval, execute work: @escaping @convention(block) () -> ()) {
   |                                                           `- note: parameter 'work' is implicitly non-sendable
18 |         let time = DispatchTime.now() + seconds
19 |         self.asyncAfter(deadline: time, execute: work)
   |                                                  `- warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
20 |     }
21 | }
[28/64] Compiling Swiftlier String+Enhancements.swift
/host/spi-builder-workspace/Sources/Swiftlier/Enhancements/DispatchQueue+Enhancements.swift:19:50: warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
15 |     ///     - seconds: Number of seconds to wait to perform the work
16 |     ///     - work: Work to execute after delay
17 |     public func asyncAfter(seconds: TimeInterval, execute work: @escaping @convention(block) () -> ()) {
   |                                                           `- note: parameter 'work' is implicitly non-sendable
18 |         let time = DispatchTime.now() + seconds
19 |         self.asyncAfter(deadline: time, execute: work)
   |                                                  `- warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
20 |     }
21 | }
[29/64] Compiling Swiftlier URL+Enhancements.swift
/host/spi-builder-workspace/Sources/Swiftlier/Enhancements/DispatchQueue+Enhancements.swift:19:50: warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
15 |     ///     - seconds: Number of seconds to wait to perform the work
16 |     ///     - work: Work to execute after delay
17 |     public func asyncAfter(seconds: TimeInterval, execute work: @escaping @convention(block) () -> ()) {
   |                                                           `- note: parameter 'work' is implicitly non-sendable
18 |         let time = DispatchTime.now() + seconds
19 |         self.asyncAfter(deadline: time, execute: work)
   |                                                  `- warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
20 |     }
21 | }
[30/64] Compiling Swiftlier AnySwiftlierError.swift
/host/spi-builder-workspace/Sources/Swiftlier/Enhancements/DispatchQueue+Enhancements.swift:19:50: warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
15 |     ///     - seconds: Number of seconds to wait to perform the work
16 |     ///     - work: Work to execute after delay
17 |     public func asyncAfter(seconds: TimeInterval, execute work: @escaping @convention(block) () -> ()) {
   |                                                           `- note: parameter 'work' is implicitly non-sendable
18 |         let time = DispatchTime.now() + seconds
19 |         self.asyncAfter(deadline: time, execute: work)
   |                                                  `- warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
20 |     }
21 | }
[31/64] Compiling Swiftlier GenericSwiftlierError.swift
/host/spi-builder-workspace/Sources/Swiftlier/Enhancements/DispatchQueue+Enhancements.swift:19:50: warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
15 |     ///     - seconds: Number of seconds to wait to perform the work
16 |     ///     - work: Work to execute after delay
17 |     public func asyncAfter(seconds: TimeInterval, execute work: @escaping @convention(block) () -> ()) {
   |                                                           `- note: parameter 'work' is implicitly non-sendable
18 |         let time = DispatchTime.now() + seconds
19 |         self.asyncAfter(deadline: time, execute: work)
   |                                                  `- warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
20 |     }
21 | }
[32/64] Compiling Swiftlier OperationBasedError.swift
/host/spi-builder-workspace/Sources/Swiftlier/Enhancements/DispatchQueue+Enhancements.swift:19:50: warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
15 |     ///     - seconds: Number of seconds to wait to perform the work
16 |     ///     - work: Work to execute after delay
17 |     public func asyncAfter(seconds: TimeInterval, execute work: @escaping @convention(block) () -> ()) {
   |                                                           `- note: parameter 'work' is implicitly non-sendable
18 |         let time = DispatchTime.now() + seconds
19 |         self.asyncAfter(deadline: time, execute: work)
   |                                                  `- warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
20 |     }
21 | }
[33/64] Compiling Swiftlier OtherSwiftlierError.swift
/host/spi-builder-workspace/Sources/Swiftlier/Enhancements/DispatchQueue+Enhancements.swift:19:50: warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
15 |     ///     - seconds: Number of seconds to wait to perform the work
16 |     ///     - work: Work to execute after delay
17 |     public func asyncAfter(seconds: TimeInterval, execute work: @escaping @convention(block) () -> ()) {
   |                                                           `- note: parameter 'work' is implicitly non-sendable
18 |         let time = DispatchTime.now() + seconds
19 |         self.asyncAfter(deadline: time, execute: work)
   |                                                  `- warning: passing non-sendable parameter 'work' to function expecting a @Sendable closure
20 |     }
21 | }
[34/64] Compiling Swiftlier SwiftlierError.swift
[35/64] Compiling Swiftlier SwiftlierResult.swift
[36/64] Compiling Swiftlier FileSystem+iOSDirectories.swift
[37/64] Compiling Swiftlier FileSystem.swift
[38/64] Compiling Swiftlier Path+Coding.swift
[39/64] Compiling Swiftlier Path.swift
[40/64] Compiling Swiftlier PersistenceService.swift
[41/64] Compiling Swiftlier ReferenceTypePersistenceService.swift
[42/64] Compiling Swiftlier ValueTypePersistenceService.swift
[43/64] Compiling Swiftlier Bool+Formatting.swift
[44/64] Compiling Swiftlier Data+Base64.swift
[45/64] Compiling Swiftlier Date+Formatting.swift
[46/64] Compiling Swiftlier Double+Formatting.swift
[47/64] Compiling Swiftlier HeartRateFormatter.swift
[48/64] Compiling Swiftlier TimeInterval+Formatting.swift
[49/64] Compiling Swiftlier BinarySearchTree.swift
[50/64] Compiling Swiftlier Coding+Helpers.swift
[51/64] Compiling Swiftlier CodingKeys.swift
[52/64] Compiling Swiftlier NativeTypesDecoder.swift
[53/64] Compiling Swiftlier NativeTypesEncoder.swift
[54/64] Compiling Swiftlier PercentEncodable.swift
[55/64] Compiling Swiftlier SpecDecoder.swift
[56/64] Compiling Swiftlier Collection+Enhancments.swift
[57/64] Compiling Swiftlier Data+Processing.swift
[58/64] Compiling Swiftlier Age.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no exact matches in call to global function 'sin'
163 |     }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 |     }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no exact matches in call to global function 'cos'
167 |     }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 |     }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
[59/64] Compiling Swiftlier AlwaysEqual.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no exact matches in call to global function 'sin'
163 |     }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 |     }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no exact matches in call to global function 'cos'
167 |     }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 |     }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
[60/64] Compiling Swiftlier Angle.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no exact matches in call to global function 'sin'
163 |     }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 |     }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no exact matches in call to global function 'cos'
167 |     }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 |     }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
[61/64] Compiling Swiftlier Day.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no exact matches in call to global function 'sin'
163 |     }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 |     }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no exact matches in call to global function 'cos'
167 |     }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 |     }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
[62/64] Compiling Swiftlier EmailAddress.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no exact matches in call to global function 'sin'
163 |     }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 |     }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no exact matches in call to global function 'cos'
167 |     }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 |     }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
[63/64] Compiling Swiftlier HTML.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no exact matches in call to global function 'sin'
163 |     }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 |     }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no exact matches in call to global function 'cos'
167 |     }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 |     }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
[64/64] Compiling Swiftlier Mass.swift
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no exact matches in call to global function 'sin'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no exact matches in call to global function 'sin'
163 |     }
164 |
Foundation.sin:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:162:16: error: no 'sin' candidates produce the expected contextual result type 'Float'
160 | extension Float: AngleValue {
161 |     public var sine: Float {
162 |         return sin(self)
    |                `- error: no 'sin' candidates produce the expected contextual result type 'Float'
163 |     }
164 |
Foundation.sin:1:13: note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func sin(_ x: CGFloat) -> CGFloat
  |             `- note: 'sin' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:96:8: note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 94 | long double cosl(long double __x);
 95 |
 96 | double sin(double __x);
    |        `- note: 'sin' produces 'Double', not the expected contextual result type 'Float'
 97 | float sinf(float __x);
 98 | long double sinl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no exact matches in call to global function 'cos'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no exact matches in call to global function 'cos'
167 |     }
168 | }
Foundation.cos:1:13: note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: candidate expects value of type 'CGFloat' for parameter #1 (got 'Float')
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: candidate expects value of type 'Double' for parameter #1 (got 'Float')
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
/host/spi-builder-workspace/Sources/Swiftlier/Model/Types/Angle.swift:166:16: error: no 'cos' candidates produce the expected contextual result type 'Float'
164 |
165 |     public var cosine: Float {
166 |         return cos(self)
    |                `- error: no 'cos' candidates produce the expected contextual result type 'Float'
167 |     }
168 | }
Foundation.cos:1:13: note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
1 | public func cos(_ x: CGFloat) -> CGFloat
  |             `- note: 'cos' produces 'CGFloat', not the expected contextual result type 'Float'
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/math.h:92:8: note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 90 | long double atan2l(long double __y, long double __x);
 91 |
 92 | double cos(double __x);
    |        `- note: 'cos' produces 'Double', not the expected contextual result type 'Float'
 93 | float cosf(float __x);
 94 | long double cosl(long double __x);
BUILD FAILURE 6.1 android