The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of SwiftUIBackports, reference 26.0.1 (2beebc), with Swift 6.1 for macOS (SPM) on 30 Nov 2025 01:44:01 UTC.

Swift 6 data race errors: 62

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64

Build Log

    |                     |- warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |                     `- note: add 'nonisolated' to 'sharingServicePicker(_:didChoose:)' to make this instance method not isolated to the actor
 80 |             sharingServicePicker.delegate = nil
 81 |             dismissController()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/System Overlays/SystemOverlays.swift:40:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | private struct PersistentSystemOverlaysPreferenceKey: PreferenceKey {
39 |     typealias Value = Backport<Any>.Visibility
40 |     static var defaultValue: Value = .automatic
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static func reduce(value: inout Value, nextValue: () -> Value) {
42 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/iOS/ScrollView/Scroll+Environment.swift:47:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | private struct BackportVerticalIndicatorKey: EnvironmentKey {
47 |     static var defaultValue: Backport<Any>.ScrollIndicatorVisibility = .automatic
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/iOS/ScrollView/Scroll+Environment.swift:51:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 |
50 | private struct BackportHorizontalIndicatorKey: EnvironmentKey {
51 |     static var defaultValue: Backport<Any>.ScrollIndicatorVisibility = .automatic
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/iOS/ScrollView/Scroll+Environment.swift:55:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
53 |
54 | private struct BackportKeyboardDismissKey: EnvironmentKey {
55 |     static var defaultValue: Backport<Any>.ScrollDismissesKeyboardMode = .automatic
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 | }
57 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/iOS/ScrollView/Scroll+Environment.swift:59:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
57 |
58 | private struct BackportScrollEnabledKey: EnvironmentKey {
59 |     static var defaultValue: Bool = true
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
60 | }
61 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AppStorage/AppStorage.swift:15:10: warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
 13 |     public struct AppStorage<Value>: DynamicProperty {
 14 |
 15 |         @ObservedObject
    |          |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
    |          `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
 16 |         private var _value: RefStorage<Value>
 17 |         private let commitHandler: (Value) -> Void
[137/163] Compiling SwiftUIBackports Transferable.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:56: warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |                                                        `- warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.projectedValue:2:39: note: property declared here
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }}
  |                                       `- note: property declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)}
  |                                   `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:145:16: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
    |                `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
146 |                 observedObject.value = state.value
147 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:146:17: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
146 |                 observedObject.value = state.value
    |                 `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
147 |             }
148 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/System Overlays/SystemOverlays.swift:40:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | private struct PersistentSystemOverlaysPreferenceKey: PreferenceKey {
39 |     typealias Value = Backport<Any>.Visibility
40 |     static var defaultValue: Value = .automatic
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static func reduce(value: inout Value, nextValue: () -> Value) {
42 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:139:9: error: return from initializer without initializing all stored properties
137 |         public init(wrappedValue thunk: @autoclosure @escaping () -> Wrapped) {
138 |             self.thunk = thunk
139 |         }
    |         |- error: return from initializer without initializing all stored properties
    |         `- note: main actor-isolated default value of 'self.observedObject' cannot be used in a nonisolated initalizer
140 |
141 |         public mutating func update() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             |- warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
    |             `- note: sending task-isolated 'self.wrappedValue' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
116 |         }
117 |
[138/163] Compiling SwiftUIBackports StateObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:56: warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |                                                        `- warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.projectedValue:2:39: note: property declared here
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }}
  |                                       `- note: property declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)}
  |                                   `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:145:16: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
    |                `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
146 |                 observedObject.value = state.value
147 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:146:17: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
146 |                 observedObject.value = state.value
    |                 `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
147 |             }
148 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/System Overlays/SystemOverlays.swift:40:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | private struct PersistentSystemOverlaysPreferenceKey: PreferenceKey {
39 |     typealias Value = Backport<Any>.Visibility
40 |     static var defaultValue: Value = .automatic
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static func reduce(value: inout Value, nextValue: () -> Value) {
42 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:139:9: error: return from initializer without initializing all stored properties
137 |         public init(wrappedValue thunk: @autoclosure @escaping () -> Wrapped) {
138 |             self.thunk = thunk
139 |         }
    |         |- error: return from initializer without initializing all stored properties
    |         `- note: main actor-isolated default value of 'self.observedObject' cannot be used in a nonisolated initalizer
140 |
141 |         public mutating func update() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             |- warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
    |             `- note: sending task-isolated 'self.wrappedValue' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
116 |         }
117 |
[139/163] Compiling SwiftUIBackports SystemOverlays.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:56: warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |                                                        `- warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.projectedValue:2:39: note: property declared here
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }}
  |                                       `- note: property declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)}
  |                                   `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:145:16: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
    |                `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
146 |                 observedObject.value = state.value
147 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:146:17: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
146 |                 observedObject.value = state.value
    |                 `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
147 |             }
148 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/System Overlays/SystemOverlays.swift:40:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | private struct PersistentSystemOverlaysPreferenceKey: PreferenceKey {
39 |     typealias Value = Backport<Any>.Visibility
40 |     static var defaultValue: Value = .automatic
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static func reduce(value: inout Value, nextValue: () -> Value) {
42 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:139:9: error: return from initializer without initializing all stored properties
137 |         public init(wrappedValue thunk: @autoclosure @escaping () -> Wrapped) {
138 |             self.thunk = thunk
139 |         }
    |         |- error: return from initializer without initializing all stored properties
    |         `- note: main actor-isolated default value of 'self.observedObject' cannot be used in a nonisolated initalizer
140 |
141 |         public mutating func update() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             |- warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
    |             `- note: sending task-isolated 'self.wrappedValue' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
116 |         }
117 |
[140/163] Compiling SwiftUIBackports Task.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:56: warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |                                                        `- warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.projectedValue:2:39: note: property declared here
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }}
  |                                       `- note: property declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)}
  |                                   `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:145:16: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
    |                `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
146 |                 observedObject.value = state.value
147 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:146:17: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
146 |                 observedObject.value = state.value
    |                 `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
147 |             }
148 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/System Overlays/SystemOverlays.swift:40:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | private struct PersistentSystemOverlaysPreferenceKey: PreferenceKey {
39 |     typealias Value = Backport<Any>.Visibility
40 |     static var defaultValue: Value = .automatic
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static func reduce(value: inout Value, nextValue: () -> Value) {
42 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:139:9: error: return from initializer without initializing all stored properties
137 |         public init(wrappedValue thunk: @autoclosure @escaping () -> Wrapped) {
138 |             self.thunk = thunk
139 |         }
    |         |- error: return from initializer without initializing all stored properties
    |         `- note: main actor-isolated default value of 'self.observedObject' cannot be used in a nonisolated initalizer
140 |
141 |         public mutating func update() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             |- warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
    |             `- note: sending task-isolated 'self.wrappedValue' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
116 |         }
117 |
[141/163] Compiling SwiftUIBackports Toolbar.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:56: warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |                                                        `- warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.projectedValue:2:39: note: property declared here
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }}
  |                                       `- note: property declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)}
  |                                   `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:145:16: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
    |                `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
146 |                 observedObject.value = state.value
147 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:146:17: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
146 |                 observedObject.value = state.value
    |                 `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
147 |             }
148 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/System Overlays/SystemOverlays.swift:40:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | private struct PersistentSystemOverlaysPreferenceKey: PreferenceKey {
39 |     typealias Value = Backport<Any>.Visibility
40 |     static var defaultValue: Value = .automatic
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static func reduce(value: inout Value, nextValue: () -> Value) {
42 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:139:9: error: return from initializer without initializing all stored properties
137 |         public init(wrappedValue thunk: @autoclosure @escaping () -> Wrapped) {
138 |             self.thunk = thunk
139 |         }
    |         |- error: return from initializer without initializing all stored properties
    |         `- note: main actor-isolated default value of 'self.observedObject' cannot be used in a nonisolated initalizer
140 |
141 |         public mutating func update() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             |- warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
    |             `- note: sending task-isolated 'self.wrappedValue' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
116 |         }
117 |
[142/163] Compiling SwiftUIBackports ToolbarBackground+Environment.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:56: warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |                                                        `- warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.projectedValue:2:39: note: property declared here
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }}
  |                                       `- note: property declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)}
  |                                   `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:145:16: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
    |                `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
146 |                 observedObject.value = state.value
147 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:146:17: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
146 |                 observedObject.value = state.value
    |                 `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
147 |             }
148 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/System Overlays/SystemOverlays.swift:40:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | private struct PersistentSystemOverlaysPreferenceKey: PreferenceKey {
39 |     typealias Value = Backport<Any>.Visibility
40 |     static var defaultValue: Value = .automatic
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static func reduce(value: inout Value, nextValue: () -> Value) {
42 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:139:9: error: return from initializer without initializing all stored properties
137 |         public init(wrappedValue thunk: @autoclosure @escaping () -> Wrapped) {
138 |             self.thunk = thunk
139 |         }
    |         |- error: return from initializer without initializing all stored properties
    |         `- note: main actor-isolated default value of 'self.observedObject' cannot be used in a nonisolated initalizer
140 |
141 |         public mutating func update() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             |- warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
    |             `- note: sending task-isolated 'self.wrappedValue' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
116 |         }
117 |
[143/163] Compiling SwiftUIBackports ToolbarBackground.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:56: warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |                                                        `- warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.projectedValue:2:39: note: property declared here
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }}
  |                                       `- note: property declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)}
  |                                   `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:145:16: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
    |                `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
146 |                 observedObject.value = state.value
147 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:146:17: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
146 |                 observedObject.value = state.value
    |                 `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
147 |             }
148 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/System Overlays/SystemOverlays.swift:40:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | private struct PersistentSystemOverlaysPreferenceKey: PreferenceKey {
39 |     typealias Value = Backport<Any>.Visibility
40 |     static var defaultValue: Value = .automatic
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static func reduce(value: inout Value, nextValue: () -> Value) {
42 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:139:9: error: return from initializer without initializing all stored properties
137 |         public init(wrappedValue thunk: @autoclosure @escaping () -> Wrapped) {
138 |             self.thunk = thunk
139 |         }
    |         |- error: return from initializer without initializing all stored properties
    |         `- note: main actor-isolated default value of 'self.observedObject' cannot be used in a nonisolated initalizer
140 |
141 |         public mutating func update() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             |- warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
    |             `- note: sending task-isolated 'self.wrappedValue' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
116 |         }
117 |
[144/163] Compiling SwiftUIBackports ToolbarBackgroundModifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:56: warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |                                                        `- warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.projectedValue:2:39: note: property declared here
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }}
  |                                       `- note: property declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)}
  |                                   `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:145:16: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
    |                `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
146 |                 observedObject.value = state.value
147 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:146:17: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
146 |                 observedObject.value = state.value
    |                 `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
147 |             }
148 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/System Overlays/SystemOverlays.swift:40:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | private struct PersistentSystemOverlaysPreferenceKey: PreferenceKey {
39 |     typealias Value = Backport<Any>.Visibility
40 |     static var defaultValue: Value = .automatic
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static func reduce(value: inout Value, nextValue: () -> Value) {
42 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:139:9: error: return from initializer without initializing all stored properties
137 |         public init(wrappedValue thunk: @autoclosure @escaping () -> Wrapped) {
138 |             self.thunk = thunk
139 |         }
    |         |- error: return from initializer without initializing all stored properties
    |         `- note: main actor-isolated default value of 'self.observedObject' cannot be used in a nonisolated initalizer
140 |
141 |         public mutating func update() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             |- warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
    |             `- note: sending task-isolated 'self.wrappedValue' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
116 |         }
117 |
[145/163] Compiling SwiftUIBackports PushTransition.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:56: warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |                                                        `- warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.projectedValue:2:39: note: property declared here
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }}
  |                                       `- note: property declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)}
  |                                   `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:145:16: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
    |                `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
146 |                 observedObject.value = state.value
147 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:146:17: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
146 |                 observedObject.value = state.value
    |                 `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
147 |             }
148 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/System Overlays/SystemOverlays.swift:40:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | private struct PersistentSystemOverlaysPreferenceKey: PreferenceKey {
39 |     typealias Value = Backport<Any>.Visibility
40 |     static var defaultValue: Value = .automatic
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static func reduce(value: inout Value, nextValue: () -> Value) {
42 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:139:9: error: return from initializer without initializing all stored properties
137 |         public init(wrappedValue thunk: @autoclosure @escaping () -> Wrapped) {
138 |             self.thunk = thunk
139 |         }
    |         |- error: return from initializer without initializing all stored properties
    |         `- note: main actor-isolated default value of 'self.observedObject' cannot be used in a nonisolated initalizer
140 |
141 |         public mutating func update() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             |- warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
    |             `- note: sending task-isolated 'self.wrappedValue' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
116 |         }
117 |
[146/163] Compiling SwiftUIBackports Visibility.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:56: warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |                                                        `- warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.projectedValue:2:39: note: property declared here
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }}
  |                                       `- note: property declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)}
  |                                   `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:145:16: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
    |                `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
146 |                 observedObject.value = state.value
147 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:146:17: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
146 |                 observedObject.value = state.value
    |                 `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
147 |             }
148 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/System Overlays/SystemOverlays.swift:40:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | private struct PersistentSystemOverlaysPreferenceKey: PreferenceKey {
39 |     typealias Value = Backport<Any>.Visibility
40 |     static var defaultValue: Value = .automatic
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static func reduce(value: inout Value, nextValue: () -> Value) {
42 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:139:9: error: return from initializer without initializing all stored properties
137 |         public init(wrappedValue thunk: @autoclosure @escaping () -> Wrapped) {
138 |             self.thunk = thunk
139 |         }
    |         |- error: return from initializer without initializing all stored properties
    |         `- note: main actor-isolated default value of 'self.observedObject' cannot be used in a nonisolated initalizer
140 |
141 |         public mutating func update() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             |- warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
    |             `- note: sending task-isolated 'self.wrappedValue' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
116 |         }
117 |
[147/163] Compiling SwiftUIBackports AutoCapitalization.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:56: warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |                                                        `- warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.projectedValue:2:39: note: property declared here
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }}
  |                                       `- note: property declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)}
  |                                   `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:145:16: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
    |                `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
146 |                 observedObject.value = state.value
147 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:146:17: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
146 |                 observedObject.value = state.value
    |                 `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
147 |             }
148 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/System Overlays/SystemOverlays.swift:40:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | private struct PersistentSystemOverlaysPreferenceKey: PreferenceKey {
39 |     typealias Value = Backport<Any>.Visibility
40 |     static var defaultValue: Value = .automatic
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static func reduce(value: inout Value, nextValue: () -> Value) {
42 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:139:9: error: return from initializer without initializing all stored properties
137 |         public init(wrappedValue thunk: @autoclosure @escaping () -> Wrapped) {
138 |             self.thunk = thunk
139 |         }
    |         |- error: return from initializer without initializing all stored properties
    |         `- note: main actor-isolated default value of 'self.observedObject' cannot be used in a nonisolated initalizer
140 |
141 |         public mutating func update() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             |- warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
    |             `- note: sending task-isolated 'self.wrappedValue' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
116 |         }
117 |
[148/163] Compiling SwiftUIBackports FocusState.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:56: warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |                                                        `- warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.projectedValue:2:39: note: property declared here
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }}
  |                                       `- note: property declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)}
  |                                   `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:145:16: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
    |                `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
146 |                 observedObject.value = state.value
147 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:146:17: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
146 |                 observedObject.value = state.value
    |                 `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
147 |             }
148 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/System Overlays/SystemOverlays.swift:40:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | private struct PersistentSystemOverlaysPreferenceKey: PreferenceKey {
39 |     typealias Value = Backport<Any>.Visibility
40 |     static var defaultValue: Value = .automatic
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static func reduce(value: inout Value, nextValue: () -> Value) {
42 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:139:9: error: return from initializer without initializing all stored properties
137 |         public init(wrappedValue thunk: @autoclosure @escaping () -> Wrapped) {
138 |             self.thunk = thunk
139 |         }
    |         |- error: return from initializer without initializing all stored properties
    |         `- note: main actor-isolated default value of 'self.observedObject' cannot be used in a nonisolated initalizer
140 |
141 |         public mutating func update() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             |- warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
    |             `- note: sending task-isolated 'self.wrappedValue' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
116 |         }
117 |
[149/163] Compiling SwiftUIBackports ViewFocused.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:56: warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |                                                        `- warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.projectedValue:2:39: note: property declared here
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }}
  |                                       `- note: property declared here
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
116 |         }
117 |
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)}
  |                                   `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:145:16: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
    |                `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
146 |                 observedObject.value = state.value
147 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:146:17: warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 68 |         @State private var state = Wrapper()
 69 |
 70 |         @ObservedObject private var observedObject = Wrapper()
    |                                     `- note: property declared here
 71 |
 72 |         private var thunk: () -> Wrapped
    :
139 |         }
140 |
141 |         public mutating func update() {
    |                              `- note: add '@MainActor' to make instance method 'update()' part of global actor 'MainActor'
142 |             if state.value == nil {
143 |                 state.value = thunk()
144 |             }
145 |             if observedObject.value !== state.value {
146 |                 observedObject.value = state.value
    |                 `- warning: main actor-isolated property 'observedObject' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
147 |             }
148 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/System Overlays/SystemOverlays.swift:40:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 | private struct PersistentSystemOverlaysPreferenceKey: PreferenceKey {
39 |     typealias Value = Backport<Any>.Visibility
40 |     static var defaultValue: Value = .automatic
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |     static func reduce(value: inout Value, nextValue: () -> Value) {
42 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:139:9: error: return from initializer without initializing all stored properties
137 |         public init(wrappedValue thunk: @autoclosure @escaping () -> Wrapped) {
138 |             self.thunk = thunk
139 |         }
    |         |- error: return from initializer without initializing all stored properties
    |         `- note: main actor-isolated default value of 'self.observedObject' cannot be used in a nonisolated initalizer
140 |
141 |         public mutating func update() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/StateObject/StateObject.swift:115:13: warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
113 |         ///     }
114 |         public var projectedValue: ObservedObject<Wrapped>.Wrapper {
115 |             ObservedObject(wrappedValue: wrappedValue).projectedValue
    |             |- warning: sending 'self.wrappedValue' risks causing data races; this is an error in the Swift 6 language mode
    |             `- note: sending task-isolated 'self.wrappedValue' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
116 |         }
117 |
[150/163] Compiling SwiftUIBackports Backport.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Deprecations/FittingGeometryReader+Deprecations.swift:32:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | private struct SizePreferenceKey: PreferenceKey {
32 |     static var defaultValue: CGSize = .zero
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static func reduce(value: inout CGSize, nextValue: () -> CGSize) {
34 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:108:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
100 |
101 |     var key: String
    :
106 |
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
109 |         nonmutating set { store.value = newValue }
110 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:109:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
100 |
101 |     var key: String
    :
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
109 |         nonmutating set { store.value = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |     }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:135:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
129 |
130 |     init(key: String) {
    :
133 |
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 |         nonmutating set { store.contains = newValue }
137 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:136:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
129 |
130 |     init(key: String) {
    :
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
136 |         nonmutating set { store.contains = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
137 |     }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:105:5: error: return from initializer without initializing all stored properties
103 |     init(key: String) {
104 |         self.key = key
105 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
106 |
107 |     private(set) var wrappedValue: Value? {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:132:5: error: return from initializer without initializing all stored properties
130 |     init(key: String) {
131 |         self.key = key
132 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
133 |
134 |     var wrappedValue: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/NSItemProvider+Async.swift:11:34: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
 9 |                 switch (value, error) {
10 |                 case let (.some(value as T), nil):
11 |                     continuation.resume(returning: value)
   |                                  |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
   |                                  `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
12 |                 case let (_, .some(error)):
13 |                     continuation.resume(throwing: error)
[151/163] Compiling SwiftUIBackports FittingGeometryReader+Deprecations.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Deprecations/FittingGeometryReader+Deprecations.swift:32:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | private struct SizePreferenceKey: PreferenceKey {
32 |     static var defaultValue: CGSize = .zero
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static func reduce(value: inout CGSize, nextValue: () -> CGSize) {
34 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:108:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
100 |
101 |     var key: String
    :
106 |
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
109 |         nonmutating set { store.value = newValue }
110 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:109:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
100 |
101 |     var key: String
    :
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
109 |         nonmutating set { store.value = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |     }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:135:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
129 |
130 |     init(key: String) {
    :
133 |
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 |         nonmutating set { store.contains = newValue }
137 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:136:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
129 |
130 |     init(key: String) {
    :
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
136 |         nonmutating set { store.contains = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
137 |     }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:105:5: error: return from initializer without initializing all stored properties
103 |     init(key: String) {
104 |         self.key = key
105 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
106 |
107 |     private(set) var wrappedValue: Value? {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:132:5: error: return from initializer without initializing all stored properties
130 |     init(key: String) {
131 |         self.key = key
132 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
133 |
134 |     var wrappedValue: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/NSItemProvider+Async.swift:11:34: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
 9 |                 switch (value, error) {
10 |                 case let (.some(value as T), nil):
11 |                     continuation.resume(returning: value)
   |                                  |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
   |                                  `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
12 |                 case let (_, .some(error)):
13 |                     continuation.resume(throwing: error)
[152/163] Compiling SwiftUIBackports FittingScrollView+Deprecations.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Deprecations/FittingGeometryReader+Deprecations.swift:32:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | private struct SizePreferenceKey: PreferenceKey {
32 |     static var defaultValue: CGSize = .zero
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static func reduce(value: inout CGSize, nextValue: () -> CGSize) {
34 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:108:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
100 |
101 |     var key: String
    :
106 |
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
109 |         nonmutating set { store.value = newValue }
110 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:109:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
100 |
101 |     var key: String
    :
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
109 |         nonmutating set { store.value = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |     }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:135:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
129 |
130 |     init(key: String) {
    :
133 |
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 |         nonmutating set { store.contains = newValue }
137 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:136:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
129 |
130 |     init(key: String) {
    :
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
136 |         nonmutating set { store.contains = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
137 |     }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:105:5: error: return from initializer without initializing all stored properties
103 |     init(key: String) {
104 |         self.key = key
105 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
106 |
107 |     private(set) var wrappedValue: Value? {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:132:5: error: return from initializer without initializing all stored properties
130 |     init(key: String) {
131 |         self.key = key
132 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
133 |
134 |     var wrappedValue: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/NSItemProvider+Async.swift:11:34: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
 9 |                 switch (value, error) {
10 |                 case let (.some(value as T), nil):
11 |                     continuation.resume(returning: value)
   |                                  |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
   |                                  `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
12 |                 case let (_, .some(error)):
13 |                     continuation.resume(throwing: error)
[153/163] Compiling SwiftUIBackports Presenatation+Deprecations.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Deprecations/FittingGeometryReader+Deprecations.swift:32:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | private struct SizePreferenceKey: PreferenceKey {
32 |     static var defaultValue: CGSize = .zero
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static func reduce(value: inout CGSize, nextValue: () -> CGSize) {
34 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:108:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
100 |
101 |     var key: String
    :
106 |
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
109 |         nonmutating set { store.value = newValue }
110 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:109:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
100 |
101 |     var key: String
    :
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
109 |         nonmutating set { store.value = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |     }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:135:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
129 |
130 |     init(key: String) {
    :
133 |
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 |         nonmutating set { store.contains = newValue }
137 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:136:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
129 |
130 |     init(key: String) {
    :
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
136 |         nonmutating set { store.contains = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
137 |     }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:105:5: error: return from initializer without initializing all stored properties
103 |     init(key: String) {
104 |         self.key = key
105 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
106 |
107 |     private(set) var wrappedValue: Value? {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:132:5: error: return from initializer without initializing all stored properties
130 |     init(key: String) {
131 |         self.key = key
132 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
133 |
134 |     var wrappedValue: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/NSItemProvider+Async.swift:11:34: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
 9 |                 switch (value, error) {
10 |                 case let (.some(value as T), nil):
11 |                     continuation.resume(returning: value)
   |                                  |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
   |                                  `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
12 |                 case let (_, .some(error)):
13 |                     continuation.resume(throwing: error)
[154/163] Compiling SwiftUIBackports Environment+String.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Deprecations/FittingGeometryReader+Deprecations.swift:32:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | private struct SizePreferenceKey: PreferenceKey {
32 |     static var defaultValue: CGSize = .zero
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static func reduce(value: inout CGSize, nextValue: () -> CGSize) {
34 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:108:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
100 |
101 |     var key: String
    :
106 |
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
109 |         nonmutating set { store.value = newValue }
110 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:109:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
100 |
101 |     var key: String
    :
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
109 |         nonmutating set { store.value = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |     }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:135:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
129 |
130 |     init(key: String) {
    :
133 |
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 |         nonmutating set { store.contains = newValue }
137 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:136:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
129 |
130 |     init(key: String) {
    :
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
136 |         nonmutating set { store.contains = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
137 |     }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:105:5: error: return from initializer without initializing all stored properties
103 |     init(key: String) {
104 |         self.key = key
105 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
106 |
107 |     private(set) var wrappedValue: Value? {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:132:5: error: return from initializer without initializing all stored properties
130 |     init(key: String) {
131 |         self.key = key
132 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
133 |
134 |     var wrappedValue: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/NSItemProvider+Async.swift:11:34: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
 9 |                 switch (value, error) {
10 |                 case let (.some(value as T), nil):
11 |                     continuation.resume(returning: value)
   |                                  |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
   |                                  `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
12 |                 case let (_, .some(error)):
13 |                     continuation.resume(throwing: error)
[155/163] Compiling SwiftUIBackports Environment.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Deprecations/FittingGeometryReader+Deprecations.swift:32:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | private struct SizePreferenceKey: PreferenceKey {
32 |     static var defaultValue: CGSize = .zero
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static func reduce(value: inout CGSize, nextValue: () -> CGSize) {
34 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:108:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
100 |
101 |     var key: String
    :
106 |
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
109 |         nonmutating set { store.value = newValue }
110 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:109:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
100 |
101 |     var key: String
    :
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
109 |         nonmutating set { store.value = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |     }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:135:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
129 |
130 |     init(key: String) {
    :
133 |
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 |         nonmutating set { store.contains = newValue }
137 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:136:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
129 |
130 |     init(key: String) {
    :
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
136 |         nonmutating set { store.contains = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
137 |     }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:105:5: error: return from initializer without initializing all stored properties
103 |     init(key: String) {
104 |         self.key = key
105 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
106 |
107 |     private(set) var wrappedValue: Value? {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:132:5: error: return from initializer without initializing all stored properties
130 |     init(key: String) {
131 |         self.key = key
132 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
133 |
134 |     var wrappedValue: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/NSItemProvider+Async.swift:11:34: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
 9 |                 switch (value, error) {
10 |                 case let (.some(value as T), nil):
11 |                     continuation.resume(returning: value)
   |                                  |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
   |                                  `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
12 |                 case let (_, .some(error)):
13 |                     continuation.resume(throwing: error)
[156/163] Compiling SwiftUIBackports Inspect.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Deprecations/FittingGeometryReader+Deprecations.swift:32:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | private struct SizePreferenceKey: PreferenceKey {
32 |     static var defaultValue: CGSize = .zero
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static func reduce(value: inout CGSize, nextValue: () -> CGSize) {
34 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:108:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
100 |
101 |     var key: String
    :
106 |
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
109 |         nonmutating set { store.value = newValue }
110 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:109:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
100 |
101 |     var key: String
    :
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
109 |         nonmutating set { store.value = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |     }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:135:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
129 |
130 |     init(key: String) {
    :
133 |
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 |         nonmutating set { store.contains = newValue }
137 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:136:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
129 |
130 |     init(key: String) {
    :
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
136 |         nonmutating set { store.contains = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
137 |     }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:105:5: error: return from initializer without initializing all stored properties
103 |     init(key: String) {
104 |         self.key = key
105 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
106 |
107 |     private(set) var wrappedValue: Value? {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:132:5: error: return from initializer without initializing all stored properties
130 |     init(key: String) {
131 |         self.key = key
132 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
133 |
134 |     var wrappedValue: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/NSItemProvider+Async.swift:11:34: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
 9 |                 switch (value, error) {
10 |                 case let (.some(value as T), nil):
11 |                     continuation.resume(returning: value)
   |                                  |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
   |                                  `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
12 |                 case let (_, .some(error)):
13 |                     continuation.resume(throwing: error)
[157/163] Compiling SwiftUIBackports NSItemProvider+Async.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Deprecations/FittingGeometryReader+Deprecations.swift:32:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | private struct SizePreferenceKey: PreferenceKey {
32 |     static var defaultValue: CGSize = .zero
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static func reduce(value: inout CGSize, nextValue: () -> CGSize) {
34 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:108:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
100 |
101 |     var key: String
    :
106 |
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
109 |         nonmutating set { store.value = newValue }
110 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:109:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
100 |
101 |     var key: String
    :
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
109 |         nonmutating set { store.value = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |     }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:135:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
129 |
130 |     init(key: String) {
    :
133 |
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 |         nonmutating set { store.contains = newValue }
137 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:136:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
129 |
130 |     init(key: String) {
    :
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
136 |         nonmutating set { store.contains = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
137 |     }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:105:5: error: return from initializer without initializing all stored properties
103 |     init(key: String) {
104 |         self.key = key
105 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
106 |
107 |     private(set) var wrappedValue: Value? {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:132:5: error: return from initializer without initializing all stored properties
130 |     init(key: String) {
131 |         self.key = key
132 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
133 |
134 |     var wrappedValue: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/NSItemProvider+Async.swift:11:34: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
 9 |                 switch (value, error) {
10 |                 case let (.some(value as T), nil):
11 |                     continuation.resume(returning: value)
   |                                  |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
   |                                  `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
12 |                 case let (_, .some(error)):
13 |                     continuation.resume(throwing: error)
[158/163] Compiling SwiftUIBackports OwningController.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Deprecations/FittingGeometryReader+Deprecations.swift:32:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | private struct SizePreferenceKey: PreferenceKey {
32 |     static var defaultValue: CGSize = .zero
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static func reduce(value: inout CGSize, nextValue: () -> CGSize) {
34 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:108:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
100 |
101 |     var key: String
    :
106 |
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
109 |         nonmutating set { store.value = newValue }
110 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:109:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
100 |
101 |     var key: String
    :
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
109 |         nonmutating set { store.value = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |     }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:135:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
129 |
130 |     init(key: String) {
    :
133 |
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 |         nonmutating set { store.contains = newValue }
137 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:136:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
129 |
130 |     init(key: String) {
    :
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
136 |         nonmutating set { store.contains = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
137 |     }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:105:5: error: return from initializer without initializing all stored properties
103 |     init(key: String) {
104 |         self.key = key
105 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
106 |
107 |     private(set) var wrappedValue: Value? {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:132:5: error: return from initializer without initializing all stored properties
130 |     init(key: String) {
131 |         self.key = key
132 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
133 |
134 |     var wrappedValue: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/NSItemProvider+Async.swift:11:34: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
 9 |                 switch (value, error) {
10 |                 case let (.some(value as T), nil):
11 |                     continuation.resume(returning: value)
   |                                  |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
   |                                  `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
12 |                 case let (_, .some(error)):
13 |                     continuation.resume(throwing: error)
[159/163] Compiling SwiftUIBackports Platforms.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Deprecations/FittingGeometryReader+Deprecations.swift:32:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | private struct SizePreferenceKey: PreferenceKey {
32 |     static var defaultValue: CGSize = .zero
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static func reduce(value: inout CGSize, nextValue: () -> CGSize) {
34 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:108:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
100 |
101 |     var key: String
    :
106 |
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
109 |         nonmutating set { store.value = newValue }
110 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:109:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
100 |
101 |     var key: String
    :
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
109 |         nonmutating set { store.value = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |     }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:135:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
129 |
130 |     init(key: String) {
    :
133 |
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 |         nonmutating set { store.contains = newValue }
137 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:136:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
129 |
130 |     init(key: String) {
    :
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
136 |         nonmutating set { store.contains = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
137 |     }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:105:5: error: return from initializer without initializing all stored properties
103 |     init(key: String) {
104 |         self.key = key
105 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
106 |
107 |     private(set) var wrappedValue: Value? {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:132:5: error: return from initializer without initializing all stored properties
130 |     init(key: String) {
131 |         self.key = key
132 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
133 |
134 |     var wrappedValue: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/NSItemProvider+Async.swift:11:34: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
 9 |                 switch (value, error) {
10 |                 case let (.some(value as T), nil):
11 |                     continuation.resume(returning: value)
   |                                  |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
   |                                  `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
12 |                 case let (_, .some(error)):
13 |                     continuation.resume(throwing: error)
[160/163] Compiling SwiftUIBackports SafeArea.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Deprecations/FittingGeometryReader+Deprecations.swift:32:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | private struct SizePreferenceKey: PreferenceKey {
32 |     static var defaultValue: CGSize = .zero
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static func reduce(value: inout CGSize, nextValue: () -> CGSize) {
34 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:108:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
100 |
101 |     var key: String
    :
106 |
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
109 |         nonmutating set { store.value = newValue }
110 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:109:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
100 |
101 |     var key: String
    :
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
109 |         nonmutating set { store.value = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |     }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:135:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
129 |
130 |     init(key: String) {
    :
133 |
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 |         nonmutating set { store.contains = newValue }
137 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:136:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
129 |
130 |     init(key: String) {
    :
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
136 |         nonmutating set { store.contains = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
137 |     }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:105:5: error: return from initializer without initializing all stored properties
103 |     init(key: String) {
104 |         self.key = key
105 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
106 |
107 |     private(set) var wrappedValue: Value? {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:132:5: error: return from initializer without initializing all stored properties
130 |     init(key: String) {
131 |         self.key = key
132 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
133 |
134 |     var wrappedValue: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/NSItemProvider+Async.swift:11:34: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
 9 |                 switch (value, error) {
10 |                 case let (.some(value as T), nil):
11 |                     continuation.resume(returning: value)
   |                                  |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
   |                                  `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
12 |                 case let (_, .some(error)):
13 |                     continuation.resume(throwing: error)
[161/163] Compiling SwiftUIBackports String+LocalizationKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Deprecations/FittingGeometryReader+Deprecations.swift:32:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | private struct SizePreferenceKey: PreferenceKey {
32 |     static var defaultValue: CGSize = .zero
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static func reduce(value: inout CGSize, nextValue: () -> CGSize) {
34 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:108:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
100 |
101 |     var key: String
    :
106 |
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
109 |         nonmutating set { store.value = newValue }
110 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:109:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
100 |
101 |     var key: String
    :
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
109 |         nonmutating set { store.value = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |     }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:135:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
129 |
130 |     init(key: String) {
    :
133 |
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 |         nonmutating set { store.contains = newValue }
137 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:136:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
129 |
130 |     init(key: String) {
    :
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
136 |         nonmutating set { store.contains = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
137 |     }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:105:5: error: return from initializer without initializing all stored properties
103 |     init(key: String) {
104 |         self.key = key
105 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
106 |
107 |     private(set) var wrappedValue: Value? {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:132:5: error: return from initializer without initializing all stored properties
130 |     init(key: String) {
131 |         self.key = key
132 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
133 |
134 |     var wrappedValue: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/NSItemProvider+Async.swift:11:34: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
 9 |                 switch (value, error) {
10 |                 case let (.some(value as T), nil):
11 |                     continuation.resume(returning: value)
   |                                  |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
   |                                  `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
12 |                 case let (_, .some(error)):
13 |                     continuation.resume(throwing: error)
[162/163] Compiling SwiftUIBackports UIScene.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Deprecations/FittingGeometryReader+Deprecations.swift:32:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | private struct SizePreferenceKey: PreferenceKey {
32 |     static var defaultValue: CGSize = .zero
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static func reduce(value: inout CGSize, nextValue: () -> CGSize) {
34 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:108:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
100 |
101 |     var key: String
    :
106 |
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
109 |         nonmutating set { store.value = newValue }
110 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:109:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
100 |
101 |     var key: String
    :
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
109 |         nonmutating set { store.value = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |     }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:135:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
129 |
130 |     init(key: String) {
    :
133 |
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 |         nonmutating set { store.contains = newValue }
137 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:136:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
129 |
130 |     init(key: String) {
    :
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
136 |         nonmutating set { store.contains = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
137 |     }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:105:5: error: return from initializer without initializing all stored properties
103 |     init(key: String) {
104 |         self.key = key
105 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
106 |
107 |     private(set) var wrappedValue: Value? {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:132:5: error: return from initializer without initializing all stored properties
130 |     init(key: String) {
131 |         self.key = key
132 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
133 |
134 |     var wrappedValue: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/NSItemProvider+Async.swift:11:34: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
 9 |                 switch (value, error) {
10 |                 case let (.some(value as T), nil):
11 |                     continuation.resume(returning: value)
   |                                  |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
   |                                  `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
12 |                 case let (_, .some(error)):
13 |                     continuation.resume(throwing: error)
[163/163] Compiling SwiftUIBackports VisualEffect+iOS.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Deprecations/FittingGeometryReader+Deprecations.swift:32:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | private struct SizePreferenceKey: PreferenceKey {
32 |     static var defaultValue: CGSize = .zero
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static func reduce(value: inout CGSize, nextValue: () -> CGSize) {
34 |         value = nextValue()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:108:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
100 |
101 |     var key: String
    :
106 |
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
109 |         nonmutating set { store.value = newValue }
110 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:109:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 97 |
 98 |     @Environment(\.self) private var env
 99 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
100 |
101 |     var key: String
    :
107 |     private(set) var wrappedValue: Value? {
108 |         get { store.value }
109 |         nonmutating set { store.value = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
110 |     }
111 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:135:15: warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: property declared here
129 |
130 |     init(key: String) {
    :
133 |
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
    |               `- warning: main actor-isolated property 'store' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
136 |         nonmutating set { store.contains = newValue }
137 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:136:27: warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
126 |
127 |     var key: String
128 |     @ObservedObject private var store = Store()
    |                                 `- note: mutation of this property is only permitted within the actor
129 |
130 |     init(key: String) {
    :
134 |     var wrappedValue: Bool {
135 |         get { store.contains }
136 |         nonmutating set { store.contains = newValue }
    |                           `- warning: main actor-isolated property 'store' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
137 |     }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:105:5: error: return from initializer without initializing all stored properties
103 |     init(key: String) {
104 |         self.key = key
105 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
106 |
107 |     private(set) var wrappedValue: Value? {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/Environment+String.swift:132:5: error: return from initializer without initializing all stored properties
130 |     init(key: String) {
131 |         self.key = key
132 |     }
    |     |- error: return from initializer without initializing all stored properties
    |     `- note: main actor-isolated default value of 'self.store' cannot be used in a nonisolated initalizer
133 |
134 |     var wrappedValue: Bool {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/NSItemProvider+Async.swift:11:34: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
 9 |                 switch (value, error) {
10 |                 case let (.some(value as T), nil):
11 |                     continuation.resume(returning: value)
   |                                  |- warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
   |                                  `- note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
12 |                 case let (_, .some(error)):
13 |                     continuation.resume(throwing: error)
Fetching https://github.com/apple/swift-docc-plugin
Fetching https://github.com/shaps80/SwiftBackports
[1/510] Fetching swiftbackports
[154/2668] Fetching swiftbackports, swift-docc-plugin
Fetched https://github.com/shaps80/SwiftBackports from cache (1.21s)
Fetched https://github.com/apple/swift-docc-plugin from cache (1.21s)
Computing version for https://github.com/shaps80/SwiftBackports
Computed https://github.com/shaps80/SwiftBackports at 26.0.1 (1.81s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.5 (0.57s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.87s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.50s)
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.5
Creating working copy for https://github.com/shaps80/SwiftBackports
Working copy of https://github.com/shaps80/SwiftBackports resolved at 26.0.1
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/3] Write swift-version-2F0A5646E1D333AE.txt
[4/25] Compiling SwiftBackports Backport.swift
[5/25] Compiling SwiftBackports Codable+Representation.swift
[6/25] Compiling SwiftBackports Data+Representation.swift
[7/27] Emitting module SwiftBackports
[8/27] Compiling SwiftBackports Data+Transferable.swift
[9/27] Compiling SwiftBackports Never+Transferable.swift
[10/27] Compiling SwiftBackports File+Representations.swift
[11/27] Compiling SwiftBackports Never+Representation.swift
[12/27] Compiling SwiftBackports Tuple+Representation.swift
[13/27] Compiling SwiftBackports TransferRepresentationBuilder.swift
[14/27] Compiling SwiftBackports Transferable.swift
[15/27] Compiling SwiftBackports String+Transferable.swift
[16/27] Compiling SwiftBackports URL+Transferable.swift
[17/27] Compiling SwiftBackports SentTransferredFile.swift
[18/27] Compiling SwiftBackports Visibility.swift
[19/27] Compiling SwiftBackports TransferableRepresentation.swift
[20/27] Compiling SwiftBackports AttributedString+Transferable.swift
[21/27] Compiling SwiftBackports _ConditionalRepresentation.swift
[22/27] Compiling SwiftBackports NSItemProvider+Transferable.swift
[23/27] Compiling SwiftBackports ReceivedTransferredFile.swift
[24/27] Compiling SwiftBackports URLSession+Async.swift
[25/27] Compiling SwiftBackports CoreTypes.swift
[26/27] Compiling SwiftBackports UTTagClass.swift
[27/27] Compiling SwiftBackports UTType.swift
[28/147] Compiling SwiftUIBackports BackgroundInteraction.swift
[29/147] Compiling SwiftUIBackports ContentInteraction.swift
[30/147] Compiling SwiftUIBackports CornerRadius.swift
[31/147] Compiling SwiftUIBackports Detents.swift
[32/147] Compiling SwiftUIBackports DragIndicator.swift
[33/147] Compiling SwiftUIBackports InteractiveDetent.swift
[34/147] Compiling SwiftUIBackports InteractiveDismiss.swift
[35/147] Compiling SwiftUIBackports ScaledMetric.swift
[36/147] Compiling SwiftUIBackports Scroll+Environment.swift
[37/147] Compiling SwiftUIBackports ScrollDismissesKeyboardMode.swift
[38/147] Compiling SwiftUIBackports ScrollEnabled.swift
[39/147] Compiling SwiftUIBackports ScrollIndicatorVisibility.swift
[40/147] Compiling SwiftUIBackports ScrollIndicators.swift
[41/160] Compiling SwiftUIBackports Transferable.swift
[42/160] Compiling SwiftUIBackports StateObject.swift
[43/160] Compiling SwiftUIBackports SystemOverlays.swift
[44/160] Compiling SwiftUIBackports Task.swift
[45/160] Compiling SwiftUIBackports Toolbar.swift
[46/160] Compiling SwiftUIBackports ToolbarBackground+Environment.swift
[47/160] Compiling SwiftUIBackports ToolbarBackground.swift
[48/160] Compiling SwiftUIBackports ToolbarBackgroundModifier.swift
[49/160] Compiling SwiftUIBackports PushTransition.swift
[50/160] Compiling SwiftUIBackports Visibility.swift
[51/160] Compiling SwiftUIBackports AutoCapitalization.swift
[52/160] Compiling SwiftUIBackports FocusState.swift
[53/160] Compiling SwiftUIBackports ViewFocused.swift
[54/160] Compiling SwiftUIBackports Backport.swift
[55/160] Compiling SwiftUIBackports FittingGeometryReader+Deprecations.swift
[56/160] Compiling SwiftUIBackports FittingScrollView+Deprecations.swift
[57/160] Compiling SwiftUIBackports Presenatation+Deprecations.swift
[58/160] Compiling SwiftUIBackports Environment+String.swift
[59/160] Compiling SwiftUIBackports Environment.swift
[60/160] Compiling SwiftUIBackports Inspect.swift
[61/160] Compiling SwiftUIBackports NSItemProvider+Async.swift
[62/160] Compiling SwiftUIBackports OwningController.swift
[63/160] Compiling SwiftUIBackports Platforms.swift
[64/160] Compiling SwiftUIBackports SafeArea.swift
[65/160] Compiling SwiftUIBackports String+LocalizationKey.swift
[66/160] Compiling SwiftUIBackports UIScene.swift
[67/160] Compiling SwiftUIBackports VisualEffect+iOS.swift
[68/160] Compiling SwiftUIBackports GeometryChange.swift
[69/160] Compiling SwiftUIBackports ProposedViewSize.swift
[70/160] Compiling SwiftUIBackports Renderer.swift
[71/160] Compiling SwiftUIBackports Label.swift
[72/160] Compiling SwiftUIBackports LabelConfiguration.swift
[73/160] Compiling SwiftUIBackports LabelStyle.swift
[74/160] Compiling SwiftUIBackports DefaultLabelStyle.swift
[75/160] Compiling SwiftUIBackports IconOnlyLabelStyle.swift
[76/160] Compiling SwiftUIBackports TitleAndIconLabelStyle.swift
[77/160] Compiling SwiftUIBackports TitleOnlyLabelStyle.swift
[78/160] Compiling SwiftUIBackports LabeledContent.swift
[79/160] Compiling SwiftUIBackports LabeledContentStyle.swift
[80/160] Compiling SwiftUIBackports LabeledContentStyleConfiguration.swift
[81/160] Compiling SwiftUIBackports FetchAsset.swift
[82/160] Compiling SwiftUIBackports FetchAssetCollection.swift
[83/160] Compiling SwiftUIBackports FetchAssetList.swift
[84/160] Compiling SwiftUIBackports FetchCollectionList.swift
[85/160] Compiling SwiftUIBackports PhotosPicker+View.swift
[86/160] Compiling SwiftUIBackports PhotosPicker.swift
[87/160] Compiling SwiftUIBackports PhotosPickerItem.swift
[88/160] Compiling SwiftUIBackports PhotosPickerSelectionBehavior.swift
[89/160] Compiling SwiftUIBackports PickerFilter.swift
[90/160] Compiling SwiftUIBackports PickerResult.swift
[91/160] Compiling SwiftUIBackports Hosts.swift
[92/160] Compiling SwiftUIBackports PhotosPickerView.swift
[93/160] Compiling SwiftUIBackports ProgressView.swift
[94/160] Emitting module SwiftUIBackports
[95/160] Compiling SwiftUIBackports ScrollKeyboardDismiss.swift
[96/160] Compiling SwiftUIBackports Submit.swift
[97/160] Compiling SwiftUIBackports ColorProviders.swift
[98/160] Compiling SwiftUIBackports FontProviders.swift
[99/160] Compiling SwiftUIBackports TextEditor+Support.swift
[100/160] Compiling SwiftUIBackports TextEditor.swift
[101/160] Compiling SwiftUIBackports UICollectionViewCell.swift
[102/160] Compiling SwiftUIBackports UITableViewCell.swift
[103/160] Compiling SwiftUIBackports ProposedInsets.swift
[104/160] Compiling SwiftUIBackports ProposedSize.swift
[105/160] Compiling SwiftUIBackports UIContentConfiguration.swift
[106/160] Compiling SwiftUIBackports UIHostingConfiguration.swift
[107/160] Compiling SwiftUIBackports resource_bundle_accessor.swift
[108/160] Compiling SwiftUIBackports SensoryFeedback.swift
[109/160] Compiling SwiftUIBackports DefaultShareLinkLabel.swift
[110/160] Compiling SwiftUIBackports Items+Label+Preview.swift
[111/160] Compiling SwiftUIBackports Items+Label.swift
[112/160] Compiling SwiftUIBackports Items+Preview.swift
[113/160] Compiling SwiftUIBackports Items.swift
[114/160] Compiling SwiftUIBackports ShareLink.swift
[115/160] Compiling SwiftUIBackports SharePreview.swift
[116/160] Compiling SwiftUIBackports ShareSheet.swift
[117/160] Compiling SwiftUIBackports Item+Label+Preview.swift
[118/160] Compiling SwiftUIBackports Item+Label.swift
[119/160] Compiling SwiftUIBackports Item+Preview.swift
[120/160] Compiling SwiftUIBackports Item.swift
[121/160] Compiling SwiftUIBackports ProgressViewConfiguration.swift
[122/160] Compiling SwiftUIBackports ProgressViewStyle.swift
[123/160] Compiling SwiftUIBackports CircularProgressViewStyle.swift
[124/160] Compiling SwiftUIBackports DefaultProgressViewStyle.swift
[125/160] Compiling SwiftUIBackports LinearProgressViewStyle.swift
[126/160] Compiling SwiftUIBackports Quicklook+iOS.swift
[127/160] Compiling SwiftUIBackports Quicklook+macOS.swift
[128/160] Compiling SwiftUIBackports Quicklook.swift
[129/160] Compiling SwiftUIBackports Refreshable.swift
[130/160] Compiling SwiftUIBackports RequestReview.swift
[131/160] Compiling SwiftUIBackports Section.swift
[132/160] Compiling SwiftUIBackports SensoryFeedback+View.swift
[133/160] Compiling SwiftUIBackports SensoryFeedback+ViewModifier.swift
[134/160] Compiling SwiftUIBackports AutomaticLabeledContentStyle.swift
[135/160] Compiling SwiftUIBackports Link.swift
[136/160] Compiling SwiftUIBackports NavigationDestination.swift
[137/160] Compiling SwiftUIBackports NavigationTitle.swift
[138/160] Compiling SwiftUIBackports OnChange.swift
[139/160] Compiling SwiftUIBackports OpenURL.swift
[140/160] Compiling SwiftUIBackports Safari.swift
[141/160] Compiling SwiftUIBackports Overlay.swift
[142/160] Compiling SwiftUIBackports PasteButton.swift
[143/160] Compiling SwiftUIBackports PhaseAnimator.swift
[144/160] Compiling SwiftUIBackports MediaResults.swift
[145/160] Compiling SwiftUIBackports PHFetchOptions.swift
[146/160] Compiling SwiftUIBackports PHObject+Identifiable.swift
[147/160] Compiling SwiftUIBackports VisualEffect+macOS.swift
[148/160] Compiling SwiftUIBackports AppStorage.swift
[149/160] Compiling SwiftUIBackports AsyncImage.swift
[150/160] Compiling SwiftUIBackports Background.swift
[151/160] Compiling SwiftUIBackports ForEach+Subviews.swift
[152/160] Compiling SwiftUIBackports Group+Subviews.swift
[153/160] Compiling SwiftUIBackports Subview.swift
[154/160] Compiling SwiftUIBackports VariadicView.swift
[155/160] Compiling SwiftUIBackports ContainerRelative.swift
[156/160] Compiling SwiftUIBackports ContainerUnavailableView.swift
[157/160] Compiling SwiftUIBackports Dismiss.swift
[158/160] Compiling SwiftUIBackports DynamicType+Environment.swift
[159/160] Compiling SwiftUIBackports DynamicType+Modifiers.swift
[160/160] Compiling SwiftUIBackports DynamicType.swift
Build complete! (2.67s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swiftbackports",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "26.0.1",
            "upper_bound" : "27.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/shaps80/SwiftBackports"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "SwiftUIBackports",
  "name" : "SwiftUIBackports",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "SwiftUIBackports",
      "targets" : [
        "SwiftUIBackports"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "SwiftUIBackports",
      "module_type" : "SwiftTarget",
      "name" : "SwiftUIBackports",
      "path" : "Sources/SwiftUIBackports",
      "product_dependencies" : [
        "SwiftBackports"
      ],
      "product_memberships" : [
        "SwiftUIBackports"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Resources/PrivacyInfo.xcprivacy",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Backport.swift",
        "Deprecations/FittingGeometryReader+Deprecations.swift",
        "Deprecations/FittingScrollView+Deprecations.swift",
        "Deprecations/Presenatation+Deprecations.swift",
        "Internal/Environment+String.swift",
        "Internal/Environment.swift",
        "Internal/Inspect.swift",
        "Internal/NSItemProvider+Async.swift",
        "Internal/OwningController.swift",
        "Internal/Platforms.swift",
        "Internal/SafeArea.swift",
        "Internal/String+LocalizationKey.swift",
        "Internal/UIScene.swift",
        "Internal/VisualEffects/VisualEffect+iOS.swift",
        "Internal/VisualEffects/VisualEffect+macOS.swift",
        "Shared/AppStorage/AppStorage.swift",
        "Shared/AsyncImage/AsyncImage.swift",
        "Shared/Background/Background.swift",
        "Shared/Container/ForEach+Subviews.swift",
        "Shared/Container/Group+Subviews.swift",
        "Shared/Container/Subview.swift",
        "Shared/Container/VariadicView.swift",
        "Shared/ContainerRelative/ContainerRelative.swift",
        "Shared/ContentUnavailableView/ContainerUnavailableView.swift",
        "Shared/Dismiss/Dismiss.swift",
        "Shared/DynamicType/DynamicType+Environment.swift",
        "Shared/DynamicType/DynamicType+Modifiers.swift",
        "Shared/DynamicType/DynamicType.swift",
        "Shared/GeometryChange/GeometryChange.swift",
        "Shared/ImageRenderer/ProposedViewSize.swift",
        "Shared/ImageRenderer/Renderer.swift",
        "Shared/Label/Label.swift",
        "Shared/Label/LabelConfiguration.swift",
        "Shared/Label/LabelStyle.swift",
        "Shared/Label/Styles/DefaultLabelStyle.swift",
        "Shared/Label/Styles/IconOnlyLabelStyle.swift",
        "Shared/Label/Styles/TitleAndIconLabelStyle.swift",
        "Shared/Label/Styles/TitleOnlyLabelStyle.swift",
        "Shared/LabeledContent/LabeledContent.swift",
        "Shared/LabeledContent/LabeledContentStyle.swift",
        "Shared/LabeledContent/LabeledContentStyleConfiguration.swift",
        "Shared/LabeledContent/Styles/AutomaticLabeledContentStyle.swift",
        "Shared/Link/Link.swift",
        "Shared/Navigation/NavigationDestination.swift",
        "Shared/Navigation/NavigationTitle.swift",
        "Shared/OnChange/OnChange.swift",
        "Shared/OpenURL/OpenURL.swift",
        "Shared/OpenURL/Safari.swift",
        "Shared/Overlay/Overlay.swift",
        "Shared/PasteButton/PasteButton.swift",
        "Shared/PhaseAnimator/PhaseAnimator.swift",
        "Shared/PhotosPicker/Core/MediaResults.swift",
        "Shared/PhotosPicker/Core/PHFetchOptions.swift",
        "Shared/PhotosPicker/Core/PHObject+Identifiable.swift",
        "Shared/PhotosPicker/Fetch/FetchAsset.swift",
        "Shared/PhotosPicker/Fetch/FetchAssetCollection.swift",
        "Shared/PhotosPicker/Fetch/FetchAssetList.swift",
        "Shared/PhotosPicker/Fetch/FetchCollectionList.swift",
        "Shared/PhotosPicker/PhotosPicker+View.swift",
        "Shared/PhotosPicker/PhotosPicker.swift",
        "Shared/PhotosPicker/PhotosPickerItem.swift",
        "Shared/PhotosPicker/PhotosPickerSelectionBehavior.swift",
        "Shared/PhotosPicker/PickerFilter.swift",
        "Shared/PhotosPicker/PickerResult.swift",
        "Shared/PhotosPicker/UI/Hosts.swift",
        "Shared/PhotosPicker/UI/PhotosPickerView.swift",
        "Shared/ProgressView/ProgressView.swift",
        "Shared/ProgressView/ProgressViewConfiguration.swift",
        "Shared/ProgressView/ProgressViewStyle.swift",
        "Shared/ProgressView/Styles/CircularProgressViewStyle.swift",
        "Shared/ProgressView/Styles/DefaultProgressViewStyle.swift",
        "Shared/ProgressView/Styles/LinearProgressViewStyle.swift",
        "Shared/Quicklook/Quicklook+iOS.swift",
        "Shared/Quicklook/Quicklook+macOS.swift",
        "Shared/Quicklook/Quicklook.swift",
        "Shared/Refreshable/Refreshable.swift",
        "Shared/RequestReview/RequestReview.swift",
        "Shared/Section/Section.swift",
        "Shared/SensoryFeedback/SensoryFeedback+View.swift",
        "Shared/SensoryFeedback/SensoryFeedback+ViewModifier.swift",
        "Shared/SensoryFeedback/SensoryFeedback.swift",
        "Shared/ShareLink/DefaultShareLinkLabel.swift",
        "Shared/ShareLink/Multiple Items/Items+Label+Preview.swift",
        "Shared/ShareLink/Multiple Items/Items+Label.swift",
        "Shared/ShareLink/Multiple Items/Items+Preview.swift",
        "Shared/ShareLink/Multiple Items/Items.swift",
        "Shared/ShareLink/ShareLink.swift",
        "Shared/ShareLink/SharePreview.swift",
        "Shared/ShareLink/ShareSheet.swift",
        "Shared/ShareLink/Single Item/Item+Label+Preview.swift",
        "Shared/ShareLink/Single Item/Item+Label.swift",
        "Shared/ShareLink/Single Item/Item+Preview.swift",
        "Shared/ShareLink/Single Item/Item.swift",
        "Shared/ShareLink/Transferable.swift",
        "Shared/StateObject/StateObject.swift",
        "Shared/System Overlays/SystemOverlays.swift",
        "Shared/Task/Task.swift",
        "Shared/Toolbar/Toolbar.swift",
        "Shared/Toolbar/ToolbarBackground+Environment.swift",
        "Shared/Toolbar/ToolbarBackground.swift",
        "Shared/Toolbar/ToolbarBackgroundModifier.swift",
        "Shared/Transition/PushTransition.swift",
        "Shared/Visibility/Visibility.swift",
        "iOS/AutoCapitalization/AutoCapitalization.swift",
        "iOS/FocusState/FocusState.swift",
        "iOS/FocusState/ViewFocused.swift",
        "iOS/Presentation/BackgroundInteraction.swift",
        "iOS/Presentation/ContentInteraction.swift",
        "iOS/Presentation/CornerRadius.swift",
        "iOS/Presentation/Detents.swift",
        "iOS/Presentation/DragIndicator.swift",
        "iOS/Presentation/InteractiveDetent.swift",
        "iOS/Presentation/InteractiveDismiss.swift",
        "iOS/ScaledMetric/ScaledMetric.swift",
        "iOS/ScrollView/Scroll+Environment.swift",
        "iOS/ScrollView/ScrollDismissesKeyboardMode.swift",
        "iOS/ScrollView/ScrollEnabled.swift",
        "iOS/ScrollView/ScrollIndicatorVisibility.swift",
        "iOS/ScrollView/ScrollIndicators.swift",
        "iOS/ScrollView/ScrollKeyboardDismiss.swift",
        "iOS/Submit/Submit.swift",
        "iOS/TextEditor/ColorProviders.swift",
        "iOS/TextEditor/FontProviders.swift",
        "iOS/TextEditor/TextEditor+Support.swift",
        "iOS/TextEditor/TextEditor.swift",
        "iOS/UIHostingConfiguration/Cells/UICollectionViewCell.swift",
        "iOS/UIHostingConfiguration/Cells/UITableViewCell.swift",
        "iOS/UIHostingConfiguration/ProposedInsets.swift",
        "iOS/UIHostingConfiguration/ProposedSize.swift",
        "iOS/UIHostingConfiguration/UIContentConfiguration.swift",
        "iOS/UIHostingConfiguration/UIHostingConfiguration.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.