The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of ParameterizedTesting, reference 0.1.7 (2df3d9), with Swift 6.0 for macOS (SPM) on 29 Nov 2024 04:52:32 UTC.

Swift 6 data race errors: 10

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

========================================
RunAll
========================================
Builder version: 4.58.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/cameroncooke/SwiftParameterizedTesting.git
Reference: 0.1.7
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/cameroncooke/SwiftParameterizedTesting
 * tag               0.1.7      -> FETCH_HEAD
HEAD is now at 2df3d9c Drop swift-tools version to support earlier versions
Cloned https://github.com/cameroncooke/SwiftParameterizedTesting.git
Revision (git rev-parse @):
2df3d9c91cf27b23aaba829981a9a11ecf775fc7
SUCCESS checkout https://github.com/cameroncooke/SwiftParameterizedTesting.git at 0.1.7
Fetching https://github.com/pointfreeco/swift-snapshot-testing.git
[1/12447] Fetching swift-snapshot-testing
Fetched https://github.com/pointfreeco/swift-snapshot-testing.git from cache (4.68s)
Computing version for https://github.com/pointfreeco/swift-snapshot-testing.git
Computed https://github.com/pointfreeco/swift-snapshot-testing.git at 1.10.0 (0.66s)
Creating working copy for https://github.com/pointfreeco/swift-snapshot-testing.git
Working copy of https://github.com/pointfreeco/swift-snapshot-testing.git resolved at 1.10.0
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "swiftparameterizedtesting",
      "name": "ParameterizedTesting",
      "url": "https://github.com/cameroncooke/SwiftParameterizedTesting.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/SwiftParameterizedTesting",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/cameroncooke/SwiftParameterizedTesting.git
[1/292] Fetching swiftparameterizedtesting
Fetched https://github.com/cameroncooke/SwiftParameterizedTesting.git from cache (1.12s)
Creating working copy for https://github.com/cameroncooke/SwiftParameterizedTesting.git
Working copy of https://github.com/cameroncooke/SwiftParameterizedTesting.git resolved at 0.1.7 (2df3d9c)
warning: '.resolve-product-dependencies': dependency 'swiftparameterizedtesting' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/cameroncooke/SwiftParameterizedTesting.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/15] Compiling ParameterizedTesting ParameterizedTestsCase9.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:12:16: warning: static property 'value4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
   |                |- warning: static property 'value4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value4' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value4' 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
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:13:16: warning: static property 'value5' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
   |                |- warning: static property 'value5' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value5' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value5' 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
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:14:16: warning: static property 'value6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
   |                |- warning: static property 'value6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value6' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value6' 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
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:15:16: warning: static property 'value7' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
   |                |- warning: static property 'value7' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value7' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value7' 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
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:16:16: warning: static property 'value8' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
   |                |- warning: static property 'value8' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value8' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value8' 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
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:17:16: warning: static property 'value9' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
   |                |- warning: static property 'value9' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value9' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value9' 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
18 |     static var expectedValue = "expectedValue"
19 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[4/16] Compiling ParameterizedTesting ParameterizedTestsCase8.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:12:16: warning: static property 'value4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
   |                |- warning: static property 'value4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value4' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value4' 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
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:13:16: warning: static property 'value5' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
   |                |- warning: static property 'value5' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value5' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value5' 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
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:14:16: warning: static property 'value6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
   |                |- warning: static property 'value6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value6' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value6' 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
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:15:16: warning: static property 'value7' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
   |                |- warning: static property 'value7' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value7' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value7' 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
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:16:16: warning: static property 'value8' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
   |                |- warning: static property 'value8' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value8' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value8' 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
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[5/16] Compiling ParameterizedTesting ParameterizedTestsCase6.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:12:16: warning: static property 'value4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
   |                |- warning: static property 'value4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value4' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value4' 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
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:13:16: warning: static property 'value5' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
   |                |- warning: static property 'value5' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value5' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value5' 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
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:14:16: warning: static property 'value6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
   |                |- warning: static property 'value6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value6' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value6' 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
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[6/16] Compiling ParameterizedTesting ParameterizedTestsCase4.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:12:16: warning: static property 'value4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
   |                |- warning: static property 'value4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value4' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value4' 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
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[7/16] Compiling ParameterizedTesting ParameterizedTestsCase5.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:12:16: warning: static property 'value4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
   |                |- warning: static property 'value4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value4' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value4' 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
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:13:16: warning: static property 'value5' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
   |                |- warning: static property 'value5' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value5' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value5' 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
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[8/16] Compiling ParameterizedTesting ParameterizedTestsCase2.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
[9/16] Compiling ParameterizedTesting ParameterizedTestsCase3.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
[10/16] Compiling ParameterizedTesting ParameterizedTestHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[11/16] Compiling ParameterizedTesting ParameterizedTestsCase1.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[12/16] Compiling ParameterizedTesting ParameterizedTestsCase7.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:12:16: warning: static property 'value4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
   |                |- warning: static property 'value4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value4' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value4' 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
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:13:16: warning: static property 'value5' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
   |                |- warning: static property 'value5' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value5' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value5' 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
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:14:16: warning: static property 'value6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
   |                |- warning: static property 'value6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value6' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value6' 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
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:15:16: warning: static property 'value7' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
   |                |- warning: static property 'value7' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value7' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value7' 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
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[13/16] Compiling ParameterizedTesting XCTest+Extension.swift
[14/16] Emitting module ParameterizedTesting
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:12:16: warning: static property 'value4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
   |                |- warning: static property 'value4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value4' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value4' 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
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:13:16: warning: static property 'value5' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
   |                |- warning: static property 'value5' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value5' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value5' 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
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:14:16: warning: static property 'value6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
   |                |- warning: static property 'value6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value6' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value6' 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
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:15:16: warning: static property 'value7' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
   |                |- warning: static property 'value7' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value7' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value7' 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
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:16:16: warning: static property 'value8' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
   |                |- warning: static property 'value8' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value8' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value8' 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
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:17:16: warning: static property 'value9' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
   |                |- warning: static property 'value9' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value9' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value9' 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
18 |     static var expectedValue = "expectedValue"
19 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[15/16] Compiling ParameterizedTesting ParameterizedTestCase.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:12:16: warning: static property 'value4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
   |                |- warning: static property 'value4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value4' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value4' 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
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:13:16: warning: static property 'value5' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
   |                |- warning: static property 'value5' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value5' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value5' 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
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:14:16: warning: static property 'value6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
   |                |- warning: static property 'value6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value6' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value6' 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
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:15:16: warning: static property 'value7' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
   |                |- warning: static property 'value7' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value7' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value7' 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
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:16:16: warning: static property 'value8' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
   |                |- warning: static property 'value8' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value8' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value8' 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
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:17:16: warning: static property 'value9' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
   |                |- warning: static property 'value9' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value9' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value9' 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
18 |     static var expectedValue = "expectedValue"
19 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[16/16] Compiling ParameterizedTesting ParameterizedTestCaseKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:12:16: warning: static property 'value4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
   |                |- warning: static property 'value4' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value4' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value4' 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
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:13:16: warning: static property 'value5' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
   |                |- warning: static property 'value5' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value5' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value5' 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
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:14:16: warning: static property 'value6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
   |                |- warning: static property 'value6' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value6' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value6' 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
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:15:16: warning: static property 'value7' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
   |                |- warning: static property 'value7' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value7' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value7' 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
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:16:16: warning: static property 'value8' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
   |                |- warning: static property 'value8' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value8' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value8' 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
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:17:16: warning: static property 'value9' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
   |                |- warning: static property 'value9' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value9' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value9' 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
18 |     static var expectedValue = "expectedValue"
19 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
Build complete! (15.64s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-snapshot-testing",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.10.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-snapshot-testing.git"
    }
  ],
  "manifest_display_name" : "ParameterizedTesting",
  "name" : "ParameterizedTesting",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "ParameterizedTesting",
      "targets" : [
        "ParameterizedTesting"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ParameterizedTestingTests",
      "module_type" : "SwiftTarget",
      "name" : "ParameterizedTestingTests",
      "path" : "Tests/ParameterizedTestingTests",
      "product_dependencies" : [
        "SnapshotTesting"
      ],
      "sources" : [
        "Option+Extensions.swift",
        "ParameterizedTestCase1OptionalsTests.swift",
        "ParameterizedTestCase1Tests.swift",
        "ParameterizedTestCase2OptionalsTests.swift",
        "ParameterizedTestCase2Tests.swift",
        "ParameterizedTestCase3OptionalsTests.swift",
        "ParameterizedTestCase3Tests.swift",
        "ParameterizedTestCase4OptionalsTests.swift",
        "ParameterizedTestCase4Tests.swift",
        "ParameterizedTestCase5OptionalsTests.swift",
        "ParameterizedTestCase5Tests.swift",
        "ParameterizedTestCase6OptionalsTests.swift",
        "ParameterizedTestCase6Tests.swift",
        "ParameterizedTestCase7OptionalsTests.swift",
        "ParameterizedTestCase7Tests.swift",
        "ParameterizedTestCase8OptionalsTests.swift",
        "ParameterizedTestCase8Tests.swift",
        "ParameterizedTestCase9OptionalsTests.swift",
        "ParameterizedTestCase9Tests.swift",
        "TestData.swift",
        "TestDataWithOptionals.swift"
      ],
      "target_dependencies" : [
        "ParameterizedTesting"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ParameterizedTesting",
      "module_type" : "SwiftTarget",
      "name" : "ParameterizedTesting",
      "path" : "Sources/ParameterizedTesting",
      "product_memberships" : [
        "ParameterizedTesting"
      ],
      "sources" : [
        "ParameterizedTestCase.swift",
        "ParameterizedTestCaseKey.swift",
        "ParameterizedTestHandler.swift",
        "ParameterizedTestsCase1.swift",
        "ParameterizedTestsCase2.swift",
        "ParameterizedTestsCase3.swift",
        "ParameterizedTestsCase4.swift",
        "ParameterizedTestsCase5.swift",
        "ParameterizedTestsCase6.swift",
        "ParameterizedTestsCase7.swift",
        "ParameterizedTestsCase8.swift",
        "ParameterizedTestsCase9.swift",
        "XCTest+Extension.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ExampleTests",
      "module_type" : "SwiftTarget",
      "name" : "ExampleTests",
      "path" : "Tests/ExampleTests",
      "product_dependencies" : [
        "SnapshotTesting"
      ],
      "sources" : [
        "ExampleExpectedValuesTests.swift",
        "ExampleSnapshotTests.swift"
      ],
      "target_dependencies" : [
        "ParameterizedTesting"
      ],
      "type" : "test"
    }
  ],
  "tools_version" : "5.4"
}
Done.