Avatar
Avatar
417_72ki
@swift-6.0.3 -swift-version 6 enum Foo { private(set) static var bar: String? } (edited)
exit status: 1 with <stdin>:2:29: error: static property 'bar' is not concurrency-safe because it is nonisolated global shared mutable state 1 | enum Foo { 2 | private(set) static var bar: String? | |- error: static property 'bar' is not concurrency-safe because it is nonisolated global shared mutable state | |- note: convert 'bar' to a 'let' constant to make 'Sendable' shared state immutable | |- note: annotate 'bar' with '@MainActor' if property should only be accessed from the main actor | `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism 3 | } 4 | (edited)