Build Information
Failed to build FoundationExtensions, reference v2.0.8 (a14cd7), with Swift 6.0 for macOS (SPM) on 3 Feb 2026 07:54:46 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/teufelaudio/FoundationExtensions.git
Reference: v2.0.8
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/teufelaudio/FoundationExtensions
* tag v2.0.8 -> FETCH_HEAD
HEAD is now at a14cd7a More gating / cleanup (#71)
Cloned https://github.com/teufelaudio/FoundationExtensions.git
Revision (git rev-parse @):
a14cd7aa848c831661a8cc18b1c9d0b2551e7aba
SUCCESS checkout https://github.com/teufelaudio/FoundationExtensions.git at v2.0.8
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/teufelaudio/FoundationExtensions.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Building for debugging...
[0/5] Write sources
[2/5] Write swift-version-5BDAB9E9C0126B9D.txt
[4/207] Emitting module FoundationExtensions
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
[5/218] Emitting module FoundationExtensionsDynamic
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
[6/229] Compiling FoundationExtensionsDynamic Reader+Map.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:62:43: error: cannot find 'FoundationExtensions' in scope
60 | _ second: @escaping (E2) -> Second)
61 | -> Reader<E2, Value> where Environment == (First, Second) {
62 | return contramapEnvironment { FoundationExtensions.zip(first, second)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
63 | }
64 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:70:43: error: cannot find 'FoundationExtensions' in scope
68 | _ third: @escaping (E2) -> Third)
69 | -> Reader<E2, Value> where Environment == (First, Second, Third) {
70 | return contramapEnvironment { FoundationExtensions.zip(first, second, third)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
71 | }
72 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:79:43: error: cannot find 'FoundationExtensions' in scope
77 | _ fourth: @escaping (E2) -> Fourth)
78 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth) {
79 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
80 | }
81 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:89:43: error: cannot find 'FoundationExtensions' in scope
87 | _ fifth: @escaping (E2) -> Fifth)
88 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth) {
89 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
90 | }
91 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:100:43: error: cannot find 'FoundationExtensions' in scope
98 | _ sixth: @escaping (E2) -> Sixth)
99 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth, Sixth) {
100 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth, sixth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:85:9: error: cannot find 'FoundationExtensions' in scope
83 | _ r2: OriginResult
84 | ) -> Result<(OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
85 | FoundationExtensions.zip(r1, r2)
| `- error: cannot find 'FoundationExtensions' in scope
86 | }
87 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:100:9: error: cannot find 'FoundationExtensions' in scope
98 | _ r3: OriginResult
99 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
100 | FoundationExtensions.zip(r1, r2, r3)
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:117:9: error: cannot find 'FoundationExtensions' in scope
115 | _ r4: OriginResult
116 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
117 | FoundationExtensions.zip(r1, r2, r3, r4)
| `- error: cannot find 'FoundationExtensions' in scope
118 | }
119 | }
[7/229] Compiling FoundationExtensionsDynamic Reader+Publisher.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:62:43: error: cannot find 'FoundationExtensions' in scope
60 | _ second: @escaping (E2) -> Second)
61 | -> Reader<E2, Value> where Environment == (First, Second) {
62 | return contramapEnvironment { FoundationExtensions.zip(first, second)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
63 | }
64 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:70:43: error: cannot find 'FoundationExtensions' in scope
68 | _ third: @escaping (E2) -> Third)
69 | -> Reader<E2, Value> where Environment == (First, Second, Third) {
70 | return contramapEnvironment { FoundationExtensions.zip(first, second, third)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
71 | }
72 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:79:43: error: cannot find 'FoundationExtensions' in scope
77 | _ fourth: @escaping (E2) -> Fourth)
78 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth) {
79 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
80 | }
81 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:89:43: error: cannot find 'FoundationExtensions' in scope
87 | _ fifth: @escaping (E2) -> Fifth)
88 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth) {
89 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
90 | }
91 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:100:43: error: cannot find 'FoundationExtensions' in scope
98 | _ sixth: @escaping (E2) -> Sixth)
99 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth, Sixth) {
100 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth, sixth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:85:9: error: cannot find 'FoundationExtensions' in scope
83 | _ r2: OriginResult
84 | ) -> Result<(OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
85 | FoundationExtensions.zip(r1, r2)
| `- error: cannot find 'FoundationExtensions' in scope
86 | }
87 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:100:9: error: cannot find 'FoundationExtensions' in scope
98 | _ r3: OriginResult
99 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
100 | FoundationExtensions.zip(r1, r2, r3)
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:117:9: error: cannot find 'FoundationExtensions' in scope
115 | _ r4: OriginResult
116 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
117 | FoundationExtensions.zip(r1, r2, r3, r4)
| `- error: cannot find 'FoundationExtensions' in scope
118 | }
119 | }
[8/229] Compiling FoundationExtensionsDynamic Reader+Pure.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:62:43: error: cannot find 'FoundationExtensions' in scope
60 | _ second: @escaping (E2) -> Second)
61 | -> Reader<E2, Value> where Environment == (First, Second) {
62 | return contramapEnvironment { FoundationExtensions.zip(first, second)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
63 | }
64 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:70:43: error: cannot find 'FoundationExtensions' in scope
68 | _ third: @escaping (E2) -> Third)
69 | -> Reader<E2, Value> where Environment == (First, Second, Third) {
70 | return contramapEnvironment { FoundationExtensions.zip(first, second, third)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
71 | }
72 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:79:43: error: cannot find 'FoundationExtensions' in scope
77 | _ fourth: @escaping (E2) -> Fourth)
78 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth) {
79 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
80 | }
81 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:89:43: error: cannot find 'FoundationExtensions' in scope
87 | _ fifth: @escaping (E2) -> Fifth)
88 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth) {
89 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
90 | }
91 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:100:43: error: cannot find 'FoundationExtensions' in scope
98 | _ sixth: @escaping (E2) -> Sixth)
99 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth, Sixth) {
100 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth, sixth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:85:9: error: cannot find 'FoundationExtensions' in scope
83 | _ r2: OriginResult
84 | ) -> Result<(OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
85 | FoundationExtensions.zip(r1, r2)
| `- error: cannot find 'FoundationExtensions' in scope
86 | }
87 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:100:9: error: cannot find 'FoundationExtensions' in scope
98 | _ r3: OriginResult
99 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
100 | FoundationExtensions.zip(r1, r2, r3)
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:117:9: error: cannot find 'FoundationExtensions' in scope
115 | _ r4: OriginResult
116 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
117 | FoundationExtensions.zip(r1, r2, r3, r4)
| `- error: cannot find 'FoundationExtensions' in scope
118 | }
119 | }
[9/229] Compiling FoundationExtensionsDynamic Reader+ResultType.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:62:43: error: cannot find 'FoundationExtensions' in scope
60 | _ second: @escaping (E2) -> Second)
61 | -> Reader<E2, Value> where Environment == (First, Second) {
62 | return contramapEnvironment { FoundationExtensions.zip(first, second)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
63 | }
64 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:70:43: error: cannot find 'FoundationExtensions' in scope
68 | _ third: @escaping (E2) -> Third)
69 | -> Reader<E2, Value> where Environment == (First, Second, Third) {
70 | return contramapEnvironment { FoundationExtensions.zip(first, second, third)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
71 | }
72 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:79:43: error: cannot find 'FoundationExtensions' in scope
77 | _ fourth: @escaping (E2) -> Fourth)
78 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth) {
79 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
80 | }
81 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:89:43: error: cannot find 'FoundationExtensions' in scope
87 | _ fifth: @escaping (E2) -> Fifth)
88 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth) {
89 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
90 | }
91 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:100:43: error: cannot find 'FoundationExtensions' in scope
98 | _ sixth: @escaping (E2) -> Sixth)
99 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth, Sixth) {
100 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth, sixth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:85:9: error: cannot find 'FoundationExtensions' in scope
83 | _ r2: OriginResult
84 | ) -> Result<(OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
85 | FoundationExtensions.zip(r1, r2)
| `- error: cannot find 'FoundationExtensions' in scope
86 | }
87 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:100:9: error: cannot find 'FoundationExtensions' in scope
98 | _ r3: OriginResult
99 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
100 | FoundationExtensions.zip(r1, r2, r3)
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:117:9: error: cannot find 'FoundationExtensions' in scope
115 | _ r4: OriginResult
116 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
117 | FoundationExtensions.zip(r1, r2, r3, r4)
| `- error: cannot find 'FoundationExtensions' in scope
118 | }
119 | }
[10/229] Compiling FoundationExtensionsDynamic Reader+Zip.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:62:43: error: cannot find 'FoundationExtensions' in scope
60 | _ second: @escaping (E2) -> Second)
61 | -> Reader<E2, Value> where Environment == (First, Second) {
62 | return contramapEnvironment { FoundationExtensions.zip(first, second)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
63 | }
64 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:70:43: error: cannot find 'FoundationExtensions' in scope
68 | _ third: @escaping (E2) -> Third)
69 | -> Reader<E2, Value> where Environment == (First, Second, Third) {
70 | return contramapEnvironment { FoundationExtensions.zip(first, second, third)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
71 | }
72 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:79:43: error: cannot find 'FoundationExtensions' in scope
77 | _ fourth: @escaping (E2) -> Fourth)
78 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth) {
79 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
80 | }
81 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:89:43: error: cannot find 'FoundationExtensions' in scope
87 | _ fifth: @escaping (E2) -> Fifth)
88 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth) {
89 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
90 | }
91 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:100:43: error: cannot find 'FoundationExtensions' in scope
98 | _ sixth: @escaping (E2) -> Sixth)
99 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth, Sixth) {
100 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth, sixth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:85:9: error: cannot find 'FoundationExtensions' in scope
83 | _ r2: OriginResult
84 | ) -> Result<(OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
85 | FoundationExtensions.zip(r1, r2)
| `- error: cannot find 'FoundationExtensions' in scope
86 | }
87 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:100:9: error: cannot find 'FoundationExtensions' in scope
98 | _ r3: OriginResult
99 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
100 | FoundationExtensions.zip(r1, r2, r3)
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:117:9: error: cannot find 'FoundationExtensions' in scope
115 | _ r4: OriginResult
116 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
117 | FoundationExtensions.zip(r1, r2, r3, r4)
| `- error: cannot find 'FoundationExtensions' in scope
118 | }
119 | }
[11/229] Compiling FoundationExtensionsDynamic Reader.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:62:43: error: cannot find 'FoundationExtensions' in scope
60 | _ second: @escaping (E2) -> Second)
61 | -> Reader<E2, Value> where Environment == (First, Second) {
62 | return contramapEnvironment { FoundationExtensions.zip(first, second)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
63 | }
64 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:70:43: error: cannot find 'FoundationExtensions' in scope
68 | _ third: @escaping (E2) -> Third)
69 | -> Reader<E2, Value> where Environment == (First, Second, Third) {
70 | return contramapEnvironment { FoundationExtensions.zip(first, second, third)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
71 | }
72 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:79:43: error: cannot find 'FoundationExtensions' in scope
77 | _ fourth: @escaping (E2) -> Fourth)
78 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth) {
79 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
80 | }
81 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:89:43: error: cannot find 'FoundationExtensions' in scope
87 | _ fifth: @escaping (E2) -> Fifth)
88 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth) {
89 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
90 | }
91 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:100:43: error: cannot find 'FoundationExtensions' in scope
98 | _ sixth: @escaping (E2) -> Sixth)
99 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth, Sixth) {
100 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth, sixth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:85:9: error: cannot find 'FoundationExtensions' in scope
83 | _ r2: OriginResult
84 | ) -> Result<(OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
85 | FoundationExtensions.zip(r1, r2)
| `- error: cannot find 'FoundationExtensions' in scope
86 | }
87 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:100:9: error: cannot find 'FoundationExtensions' in scope
98 | _ r3: OriginResult
99 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
100 | FoundationExtensions.zip(r1, r2, r3)
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:117:9: error: cannot find 'FoundationExtensions' in scope
115 | _ r4: OriginResult
116 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
117 | FoundationExtensions.zip(r1, r2, r3, r4)
| `- error: cannot find 'FoundationExtensions' in scope
118 | }
119 | }
[12/229] Compiling FoundationExtensionsDynamic Result+Promise.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:62:43: error: cannot find 'FoundationExtensions' in scope
60 | _ second: @escaping (E2) -> Second)
61 | -> Reader<E2, Value> where Environment == (First, Second) {
62 | return contramapEnvironment { FoundationExtensions.zip(first, second)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
63 | }
64 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:70:43: error: cannot find 'FoundationExtensions' in scope
68 | _ third: @escaping (E2) -> Third)
69 | -> Reader<E2, Value> where Environment == (First, Second, Third) {
70 | return contramapEnvironment { FoundationExtensions.zip(first, second, third)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
71 | }
72 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:79:43: error: cannot find 'FoundationExtensions' in scope
77 | _ fourth: @escaping (E2) -> Fourth)
78 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth) {
79 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
80 | }
81 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:89:43: error: cannot find 'FoundationExtensions' in scope
87 | _ fifth: @escaping (E2) -> Fifth)
88 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth) {
89 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
90 | }
91 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:100:43: error: cannot find 'FoundationExtensions' in scope
98 | _ sixth: @escaping (E2) -> Sixth)
99 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth, Sixth) {
100 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth, sixth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:85:9: error: cannot find 'FoundationExtensions' in scope
83 | _ r2: OriginResult
84 | ) -> Result<(OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
85 | FoundationExtensions.zip(r1, r2)
| `- error: cannot find 'FoundationExtensions' in scope
86 | }
87 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:100:9: error: cannot find 'FoundationExtensions' in scope
98 | _ r3: OriginResult
99 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
100 | FoundationExtensions.zip(r1, r2, r3)
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:117:9: error: cannot find 'FoundationExtensions' in scope
115 | _ r4: OriginResult
116 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
117 | FoundationExtensions.zip(r1, r2, r3, r4)
| `- error: cannot find 'FoundationExtensions' in scope
118 | }
119 | }
[13/229] Compiling FoundationExtensionsDynamic Result+Pure.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:62:43: error: cannot find 'FoundationExtensions' in scope
60 | _ second: @escaping (E2) -> Second)
61 | -> Reader<E2, Value> where Environment == (First, Second) {
62 | return contramapEnvironment { FoundationExtensions.zip(first, second)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
63 | }
64 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:70:43: error: cannot find 'FoundationExtensions' in scope
68 | _ third: @escaping (E2) -> Third)
69 | -> Reader<E2, Value> where Environment == (First, Second, Third) {
70 | return contramapEnvironment { FoundationExtensions.zip(first, second, third)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
71 | }
72 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:79:43: error: cannot find 'FoundationExtensions' in scope
77 | _ fourth: @escaping (E2) -> Fourth)
78 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth) {
79 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
80 | }
81 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:89:43: error: cannot find 'FoundationExtensions' in scope
87 | _ fifth: @escaping (E2) -> Fifth)
88 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth) {
89 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
90 | }
91 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:100:43: error: cannot find 'FoundationExtensions' in scope
98 | _ sixth: @escaping (E2) -> Sixth)
99 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth, Sixth) {
100 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth, sixth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:85:9: error: cannot find 'FoundationExtensions' in scope
83 | _ r2: OriginResult
84 | ) -> Result<(OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
85 | FoundationExtensions.zip(r1, r2)
| `- error: cannot find 'FoundationExtensions' in scope
86 | }
87 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:100:9: error: cannot find 'FoundationExtensions' in scope
98 | _ r3: OriginResult
99 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
100 | FoundationExtensions.zip(r1, r2, r3)
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:117:9: error: cannot find 'FoundationExtensions' in scope
115 | _ r4: OriginResult
116 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
117 | FoundationExtensions.zip(r1, r2, r3, r4)
| `- error: cannot find 'FoundationExtensions' in scope
118 | }
119 | }
[14/229] Compiling FoundationExtensionsDynamic Result+ResultType.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:62:43: error: cannot find 'FoundationExtensions' in scope
60 | _ second: @escaping (E2) -> Second)
61 | -> Reader<E2, Value> where Environment == (First, Second) {
62 | return contramapEnvironment { FoundationExtensions.zip(first, second)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
63 | }
64 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:70:43: error: cannot find 'FoundationExtensions' in scope
68 | _ third: @escaping (E2) -> Third)
69 | -> Reader<E2, Value> where Environment == (First, Second, Third) {
70 | return contramapEnvironment { FoundationExtensions.zip(first, second, third)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
71 | }
72 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:79:43: error: cannot find 'FoundationExtensions' in scope
77 | _ fourth: @escaping (E2) -> Fourth)
78 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth) {
79 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
80 | }
81 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:89:43: error: cannot find 'FoundationExtensions' in scope
87 | _ fifth: @escaping (E2) -> Fifth)
88 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth) {
89 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
90 | }
91 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:100:43: error: cannot find 'FoundationExtensions' in scope
98 | _ sixth: @escaping (E2) -> Sixth)
99 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth, Sixth) {
100 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth, sixth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:85:9: error: cannot find 'FoundationExtensions' in scope
83 | _ r2: OriginResult
84 | ) -> Result<(OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
85 | FoundationExtensions.zip(r1, r2)
| `- error: cannot find 'FoundationExtensions' in scope
86 | }
87 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:100:9: error: cannot find 'FoundationExtensions' in scope
98 | _ r3: OriginResult
99 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
100 | FoundationExtensions.zip(r1, r2, r3)
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:117:9: error: cannot find 'FoundationExtensions' in scope
115 | _ r4: OriginResult
116 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
117 | FoundationExtensions.zip(r1, r2, r3, r4)
| `- error: cannot find 'FoundationExtensions' in scope
118 | }
119 | }
[15/229] Compiling FoundationExtensionsDynamic Result+Zip.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:62:43: error: cannot find 'FoundationExtensions' in scope
60 | _ second: @escaping (E2) -> Second)
61 | -> Reader<E2, Value> where Environment == (First, Second) {
62 | return contramapEnvironment { FoundationExtensions.zip(first, second)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
63 | }
64 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:70:43: error: cannot find 'FoundationExtensions' in scope
68 | _ third: @escaping (E2) -> Third)
69 | -> Reader<E2, Value> where Environment == (First, Second, Third) {
70 | return contramapEnvironment { FoundationExtensions.zip(first, second, third)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
71 | }
72 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:79:43: error: cannot find 'FoundationExtensions' in scope
77 | _ fourth: @escaping (E2) -> Fourth)
78 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth) {
79 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
80 | }
81 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:89:43: error: cannot find 'FoundationExtensions' in scope
87 | _ fifth: @escaping (E2) -> Fifth)
88 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth) {
89 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
90 | }
91 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:100:43: error: cannot find 'FoundationExtensions' in scope
98 | _ sixth: @escaping (E2) -> Sixth)
99 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth, Sixth) {
100 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth, sixth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:85:9: error: cannot find 'FoundationExtensions' in scope
83 | _ r2: OriginResult
84 | ) -> Result<(OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
85 | FoundationExtensions.zip(r1, r2)
| `- error: cannot find 'FoundationExtensions' in scope
86 | }
87 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:100:9: error: cannot find 'FoundationExtensions' in scope
98 | _ r3: OriginResult
99 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
100 | FoundationExtensions.zip(r1, r2, r3)
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:117:9: error: cannot find 'FoundationExtensions' in scope
115 | _ r4: OriginResult
116 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
117 | FoundationExtensions.zip(r1, r2, r3, r4)
| `- error: cannot find 'FoundationExtensions' in scope
118 | }
119 | }
[16/229] Compiling FoundationExtensionsDynamic ResultConvertibleType.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:62:43: error: cannot find 'FoundationExtensions' in scope
60 | _ second: @escaping (E2) -> Second)
61 | -> Reader<E2, Value> where Environment == (First, Second) {
62 | return contramapEnvironment { FoundationExtensions.zip(first, second)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
63 | }
64 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:70:43: error: cannot find 'FoundationExtensions' in scope
68 | _ third: @escaping (E2) -> Third)
69 | -> Reader<E2, Value> where Environment == (First, Second, Third) {
70 | return contramapEnvironment { FoundationExtensions.zip(first, second, third)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
71 | }
72 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:79:43: error: cannot find 'FoundationExtensions' in scope
77 | _ fourth: @escaping (E2) -> Fourth)
78 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth) {
79 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
80 | }
81 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:89:43: error: cannot find 'FoundationExtensions' in scope
87 | _ fifth: @escaping (E2) -> Fifth)
88 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth) {
89 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
90 | }
91 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Reader/Reader+Map.swift:100:43: error: cannot find 'FoundationExtensions' in scope
98 | _ sixth: @escaping (E2) -> Sixth)
99 | -> Reader<E2, Value> where Environment == (First, Second, Third, Fourth, Fifth, Sixth) {
100 | return contramapEnvironment { FoundationExtensions.zip(first, second, third, fourth, fifth, sixth)($0) }
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:85:9: error: cannot find 'FoundationExtensions' in scope
83 | _ r2: OriginResult
84 | ) -> Result<(OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
85 | FoundationExtensions.zip(r1, r2)
| `- error: cannot find 'FoundationExtensions' in scope
86 | }
87 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:100:9: error: cannot find 'FoundationExtensions' in scope
98 | _ r3: OriginResult
99 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
100 | FoundationExtensions.zip(r1, r2, r3)
| `- error: cannot find 'FoundationExtensions' in scope
101 | }
102 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/Result+Zip.swift:117:9: error: cannot find 'FoundationExtensions' in scope
115 | _ r4: OriginResult
116 | ) -> Result<(OriginResult.Success, OriginResult.Success, OriginResult.Success, OriginResult.Success), OriginResult.Failure> {
117 | FoundationExtensions.zip(r1, r2, r3, r4)
| `- error: cannot find 'FoundationExtensions' in scope
118 | }
119 | }
[17/229] Compiling FoundationExtensionsDynamic Double+Extensions.swift
[18/229] Compiling FoundationExtensionsDynamic Duration+Extensions.swift
[19/229] Compiling FoundationExtensionsDynamic Float+Extensions.swift
[20/229] Compiling FoundationExtensionsDynamic Int+Extensions.swift
[21/229] Compiling FoundationExtensionsDynamic Int16+Extensions.swift
[22/229] Compiling FoundationExtensionsDynamic Int32+Extensions.swift
[23/229] Compiling FoundationExtensionsDynamic Int64+Extensions.swift
[24/229] Compiling FoundationExtensionsDynamic NSNumber+Extensions.swift
[25/229] Compiling FoundationExtensionsDynamic Numeric+Extensions.swift
[26/229] Compiling FoundationExtensionsDynamic SignedStringConvertible.swift
[27/229] Compiling FoundationExtensionsDynamic TimeInterval+Extensions.swift
[28/229] Compiling FoundationExtensionsDynamic Sequence+Extensions.swift
[29/229] Compiling FoundationExtensionsDynamic String+Extensions.swift
[30/229] Compiling FoundationExtensionsDynamic AnyPublisher+Create.swift
[31/229] Compiling FoundationExtensionsDynamic Combine+SinkBlocking.swift
[32/229] Compiling FoundationExtensionsDynamic Completion+Extensions.swift
[33/229] Compiling FoundationExtensionsDynamic Promise+Operators.swift
[34/229] Compiling FoundationExtensionsDynamic Promise.swift
[35/229] Compiling FoundationExtensionsDynamic PromiseGate.swift
[36/229] Compiling FoundationExtensionsDynamic Publisher+Debug.swift
[37/229] Compiling FoundationExtensionsDynamic Publisher+EraseFailureToError.swift
[38/229] Compiling FoundationExtensionsDynamic Publisher+FlatMapResult.swift
[39/229] Compiling FoundationExtensionsDynamic Publisher+Promise.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
[41/229] Compiling FoundationExtensionsDynamic Publisher+ScanIntoUnique.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
[42/229] Compiling FoundationExtensionsDynamic Publisher+Traverse.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
[43/229] Compiling FoundationExtensionsDynamic Publisher+Zip.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
[44/229] Compiling FoundationExtensionsDynamic Publishers+CombineLatest.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
[45/229] Compiling FoundationExtensionsDynamic Publishers+FlatMapLatest.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
[46/229] Compiling FoundationExtensionsDynamic Publishers+PrependLatest.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
[47/229] Compiling FoundationExtensionsDynamic SingleAssignmentCancellable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
[48/229] Compiling FoundationExtensionsDynamic Comparable+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
[49/229] Compiling FoundationExtensionsDynamic Strideable+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
[50/229] Compiling FoundationExtensionsDynamic AsyncSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
[51/229] Compiling FoundationExtensionsDynamic UInt+Extensions.swift
[52/229] Compiling FoundationExtensionsDynamic UInt16+Extensions.swift
[53/229] Compiling FoundationExtensionsDynamic UInt32+Extensions.swift
[54/229] Compiling FoundationExtensionsDynamic UInt64+Extensions.swift
[55/229] Compiling FoundationExtensionsDynamic UInt8+Extensions.swift
[56/229] Compiling FoundationExtensionsDynamic Optional+AssociatedValues.swift
[57/229] Compiling FoundationExtensionsDynamic Optional+Extensions.swift
[58/229] Compiling FoundationExtensionsDynamic Optional+Fold.swift
[59/229] Compiling FoundationExtensionsDynamic Optional+Traverse.swift
[60/229] Compiling FoundationExtensionsDynamic Optional+Zip.swift
[61/229] Compiling FoundationExtensionsDynamic Reader+Collection.swift
[62/229] Compiling FoundationExtensionsDynamic FileManager+Extensions.swift
[63/229] Compiling FoundationExtensionsDynamic MoveFile.swift
[64/229] Compiling FoundationExtensionsDynamic ReadFileContents.swift
[65/229] Compiling FoundationExtensionsDynamic Composition.swift
[66/229] Compiling FoundationExtensionsDynamic FPUtils.swift
[67/229] Compiling FoundationExtensionsDynamic Function+Zip.swift
[68/229] Compiling FoundationExtensionsDynamic Operators.swift
[69/229] Compiling FoundationExtensionsDynamic L10n.swift
[70/229] Compiling FoundationExtensionsDynamic Localizable.swift
[71/229] Compiling FoundationExtensionsDynamic Localizer.swift
[72/229] Compiling FoundationExtensionsDynamic BinaryFloatingPoint+Extensions.swift
[84/229] Compiling FoundationExtensionsDynamic ResultType+AssociatedValues.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
[85/229] Compiling FoundationExtensionsDynamic ResultType+Codable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
[86/229] Compiling FoundationExtensionsDynamic ResultType+CustomStringConvertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
[87/229] Compiling FoundationExtensionsDynamic ResultType+Fold.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
[88/229] Compiling FoundationExtensionsDynamic ResultType+Map.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
[89/229] Compiling FoundationExtensionsDynamic ResultType+Recoverable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
[90/229] Compiling FoundationExtensionsDynamic ResultType+Sequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
[91/229] Compiling FoundationExtensionsDynamic ResultType+Traverse.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
[92/229] Compiling FoundationExtensionsDynamic ResultType.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
[93/229] Compiling FoundationExtensionsDynamic RuntimeWarning.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
[94/229] Compiling FoundationExtensionsDynamic EnumCodable.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
[105/229] Compiling FoundationExtensionsDynamic AccessibilityIdentifiable.swift
[106/229] Compiling FoundationExtensionsDynamic AccessibilityIdentifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
[107/229] Compiling FoundationExtensionsDynamic AnyEncodable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
[108/229] Compiling FoundationExtensionsDynamic Never+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
[109/229] Compiling FoundationExtensionsDynamic Transient.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
[110/229] Compiling FoundationExtensionsDynamic Array+AppendUnique.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
[111/229] Compiling FoundationExtensionsDynamic Array+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
[112/229] Compiling FoundationExtensionsDynamic Array+Identifiable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
[113/229] Compiling FoundationExtensionsDynamic Array+LeftRightOf.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
[114/229] Compiling FoundationExtensionsDynamic Collection+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
[115/229] Compiling FoundationExtensionsDynamic Collection+Traverse.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
[116/229] Compiling FoundationExtensionsDynamic Dictionary+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Collection/String+Extensions.swift:25:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
23 | /// Lets String confirm to LocalizedError which implements `errorDescription` returning self.
24 | /// Helps to print or encode `Error` types as strings. See tests.
25 | extension String: LocalizedError {
| |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
26 | public var errorDescription: String? {
27 | self
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
[138/229] Compiling FoundationExtensionsDynamic Locale+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:5:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | import Foundation
4 |
5 | extension Result: CustomStringConvertible where Success: CustomStringConvertible { }
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 |
7 | extension ResultType where Success: CustomStringConvertible {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Result/ResultType+CustomStringConvertible.swift:18:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
16 | }
17 |
18 | extension Result: CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
[140/229] Compiling FoundationExtensionsDynamic CGFloat+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
[141/229] Compiling FoundationExtensionsDynamic CGPoint+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
[142/229] Compiling FoundationExtensionsDynamic CGSize+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
[143/229] Compiling FoundationExtensionsDynamic Data+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
[144/229] Compiling FoundationExtensionsDynamic Data+MD5.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
[145/229] Compiling FoundationExtensionsDynamic Data+Matches.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
[146/229] Compiling FoundationExtensionsDynamic DispatchTimeInterval+Codable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
[147/229] Compiling FoundationExtensionsDynamic DispatchTimeInterval+Prism.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
[148/229] Compiling FoundationExtensionsDynamic DispatchTimeInterval+TimeInterval.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
[149/229] Compiling FoundationExtensionsDynamic FileExists.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensionsDynamic/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/CoreGraphics/CGPoint+Extensions.swift:6:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
4 |
5 | // MARK: - AdditiveArithmetic Conformance
6 | extension CGPoint: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
7 | public static func -= (lhs: inout CGPoint, rhs: CGPoint) {
8 | lhs.x -= rhs.x
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:16:69: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
14 |
15 | var mutableCopy = value
16 | replaceSubrange(offset..<(offset + size), with: Data(bytes: &mutableCopy, count: size))
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
17 | }
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Data/Data+Extensions.swift:24:28: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
22 | var selfCopy = self
23 | let size = MemoryLayout<Self>.size
24 | return Data(bytes: &selfCopy, count: size)
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
25 | }
26 | }
[161/229] Compiling FoundationExtensionsDynamic Localizable.generated.swift
[162/229] Compiling FoundationExtensionsDynamic Prism.generated.swift
[163/229] Compiling FoundationExtensionsDynamic TypeErase.generated.abstract.swift
[164/229] Compiling FoundationExtensionsDynamic TypeErase.generated.swift
[165/229] Compiling FoundationExtensionsDynamic TimerProtocol.swift
[166/229] Compiling FoundationExtensionsDynamic AggregratedError.swift
[167/229] Compiling FoundationExtensionsDynamic Emptyable.swift
[168/229] Compiling FoundationExtensionsDynamic Mergeable.swift
[169/229] Compiling FoundationExtensionsDynamic MutableParameter.swift
[170/229] Compiling FoundationExtensionsDynamic OSLog.swift
[171/229] Compiling FoundationExtensionsDynamic TypePathConvertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Combine/SingleAssignmentCancellable.swift:61:13: warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
59 | }
60 |
61 | final class AtomicInt: NSLock {
| `- warning: class 'AtomicInt' must restate inherited '@unchecked Sendable' conformance
62 | fileprivate var value: Int32
63 | init(_ value: Int32 = 0) {
/Users/admin/builder/spi-builder-workspace/Sources/FoundationExtensions/Concurrency/AsyncSequence.swift:20:1: warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
18 |
19 | // FIXME: https://github.com/swiftlang/swift/issues/57560
20 | extension KeyPath: @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'KeyPath' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
21 |
[227/229] Write Objects.LinkFileList
[228/229] Linking libFoundationExtensionsDynamic.dylib
BUILD FAILURE 6.0 macosSpm