The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of skip-bridge, reference 0.16.1 (cbd6eb), with Swift 6.1 for macOS (SPM) on 27 Aug 2025 02:56:46 UTC.

Swift 6 data race errors: 105

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.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

 89 | public var swiftOptionalClassVar: SwiftHelperClass? = SwiftHelperClass()
 90 | public var swiftOptionalKotlinClassVar: KotlinHelperClass? = KotlinHelperClass()
    |            |- warning: var 'swiftOptionalKotlinClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftOptionalKotlinClassVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftOptionalKotlinClassVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 | // MARK: Global computed vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:125:23: warning: static property 'staticIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
123 | public class SwiftClass {
124 |     public static let staticIntConstant = 1
125 |     public static var staticIntVar = 1
    |                       |- warning: static property 'staticIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'staticIntVar' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'staticIntVar' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |     public static func staticFunc(string: String) -> String {
127 |         return "swift" + string
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:390:12: warning: var 'swiftClosure0Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
388 | // MARK: Closures
389 |
390 | public var swiftClosure0Var: () -> Void = { print("original") }
    |            |- warning: var 'swiftClosure0Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftClosure0Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftClosure0Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
391 | public var swiftClosure1Var: (Int) -> String = { i in "value = \(i)" }
392 | public var swiftClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:391:12: warning: var 'swiftClosure1Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
389 |
390 | public var swiftClosure0Var: () -> Void = { print("original") }
391 | public var swiftClosure1Var: (Int) -> String = { i in "value = \(i)" }
    |            |- warning: var 'swiftClosure1Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftClosure1Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftClosure1Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
392 | public var swiftClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
393 | public var swiftClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:392:12: warning: var 'swiftClosure1PrimitivesVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
390 | public var swiftClosure0Var: () -> Void = { print("original") }
391 | public var swiftClosure1Var: (Int) -> String = { i in "value = \(i)" }
392 | public var swiftClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
    |            |- warning: var 'swiftClosure1PrimitivesVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftClosure1PrimitivesVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftClosure1PrimitivesVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
393 | public var swiftClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
394 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:393:12: warning: var 'swiftClosure1OptionalsVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
391 | public var swiftClosure1Var: (Int) -> String = { i in "value = \(i)" }
392 | public var swiftClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
393 | public var swiftClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
    |            |- warning: var 'swiftClosure1OptionalsVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftClosure1OptionalsVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftClosure1OptionalsVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
394 |
395 | // MARK: Containers
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:397:12: warning: var 'swiftIntArrayVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
395 | // MARK: Containers
396 |
397 | public var swiftIntArrayVar = [1, 2, 3]
    |            |- warning: var 'swiftIntArrayVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftIntArrayVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftIntArrayVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
398 | public var swiftStringSetVar: Set<String> = ["a", "b", "c"]
399 | public var swiftIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:398:12: warning: var 'swiftStringSetVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
396 |
397 | public var swiftIntArrayVar = [1, 2, 3]
398 | public var swiftStringSetVar: Set<String> = ["a", "b", "c"]
    |            |- warning: var 'swiftStringSetVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftStringSetVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftStringSetVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
399 | public var swiftIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
400 | public var swiftIntStringTuple = (1, "s")
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:399:12: warning: var 'swiftIntStringDictionaryVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
397 | public var swiftIntArrayVar = [1, 2, 3]
398 | public var swiftStringSetVar: Set<String> = ["a", "b", "c"]
399 | public var swiftIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
    |            |- warning: var 'swiftIntStringDictionaryVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftIntStringDictionaryVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftIntStringDictionaryVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
400 | public var swiftIntStringTuple = (1, "s")
401 | public var swiftIntErrorResult: Result<Int, SwiftError> = .success(1)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:400:12: warning: var 'swiftIntStringTuple' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
398 | public var swiftStringSetVar: Set<String> = ["a", "b", "c"]
399 | public var swiftIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
400 | public var swiftIntStringTuple = (1, "s")
    |            |- warning: var 'swiftIntStringTuple' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftIntStringTuple' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftIntStringTuple' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
401 | public var swiftIntErrorResult: Result<Int, SwiftError> = .success(1)
402 | public var swiftHashable1: AnyHashable = SwiftHashable(HashableEnum.first)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:401:12: warning: var 'swiftIntErrorResult' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
399 | public var swiftIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
400 | public var swiftIntStringTuple = (1, "s")
401 | public var swiftIntErrorResult: Result<Int, SwiftError> = .success(1)
    |            |- warning: var 'swiftIntErrorResult' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftIntErrorResult' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftIntErrorResult' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
402 | public var swiftHashable1: AnyHashable = SwiftHashable(HashableEnum.first)
403 | public var swiftHashable2: AnyHashable = SwiftHashable(HashableEnum.first)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:402:12: warning: var 'swiftHashable1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
400 | public var swiftIntStringTuple = (1, "s")
401 | public var swiftIntErrorResult: Result<Int, SwiftError> = .success(1)
402 | public var swiftHashable1: AnyHashable = SwiftHashable(HashableEnum.first)
    |            |- warning: var 'swiftHashable1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftHashable1' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftHashable1' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
403 | public var swiftHashable2: AnyHashable = SwiftHashable(HashableEnum.first)
404 | public var swiftHashable3: AnyHashable = SwiftHashable(HashableEnum.second)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:403:12: warning: var 'swiftHashable2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
401 | public var swiftIntErrorResult: Result<Int, SwiftError> = .success(1)
402 | public var swiftHashable1: AnyHashable = SwiftHashable(HashableEnum.first)
403 | public var swiftHashable2: AnyHashable = SwiftHashable(HashableEnum.first)
    |            |- warning: var 'swiftHashable2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftHashable2' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftHashable2' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
404 | public var swiftHashable3: AnyHashable = SwiftHashable(HashableEnum.second)
405 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:404:12: warning: var 'swiftHashable3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
402 | public var swiftHashable1: AnyHashable = SwiftHashable(HashableEnum.first)
403 | public var swiftHashable2: AnyHashable = SwiftHashable(HashableEnum.first)
404 | public var swiftHashable3: AnyHashable = SwiftHashable(HashableEnum.second)
    |            |- warning: var 'swiftHashable3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftHashable3' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftHashable3' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
405 |
406 | // SKIP @nobridge
[173/178] Compiling SkipBridgeToKotlinSamples Samples.swift
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:24:12: warning: let 'swiftClassConstant' is not concurrency-safe because non-'Sendable' type 'SwiftHelperClass' may have shared mutable state; this is an error in the Swift 6 language mode
 22 | public let swiftUnsignedIntConstant = UInt(3_000_000_000)
 23 | public let swiftStringConstant = "s"
 24 | public let swiftClassConstant = SwiftHelperClass()
    |            |- warning: let 'swiftClassConstant' is not concurrency-safe because non-'Sendable' type 'SwiftHelperClass' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: add '@MainActor' to make let 'swiftClassConstant' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 | public let swiftKotlinClassConstant = KotlinHelperClass()
 26 |
    :
165 | }
166 |
167 | public final class SwiftHelperClass: SwiftProtocol, SwiftGenericProtocol, Comparable, Identifiable {
    |                    `- note: class 'SwiftHelperClass' does not conform to the 'Sendable' protocol
168 |     public var id: String {
169 |         return stringVar
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:25:12: warning: let 'swiftKotlinClassConstant' is not concurrency-safe because non-'Sendable' type 'KotlinHelperClass' may have shared mutable state; this is an error in the Swift 6 language mode
 23 | public let swiftStringConstant = "s"
 24 | public let swiftClassConstant = SwiftHelperClass()
 25 | public let swiftKotlinClassConstant = KotlinHelperClass()
    |            `- warning: let 'swiftKotlinClassConstant' is not concurrency-safe because non-'Sendable' type 'KotlinHelperClass' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 | // MARK: Global optional constants
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamplesHelpers/Helpers.swift:5:14: note: class 'KotlinHelperClass' does not conform to the 'Sendable' protocol
 3 | #if !SKIP_BRIDGE
 4 |
 5 | public class KotlinHelperClass: KotlinProtocol {
   |              `- note: class 'KotlinHelperClass' does not conform to the 'Sendable' protocol
 6 |     public var stringVar = "s"
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:5:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SkipBridgeToKotlinSamplesHelpers'
  3 | import Foundation
  4 | import SkipBridge
  5 | import SkipBridgeToKotlinSamplesHelpers
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SkipBridgeToKotlinSamplesHelpers'
  6 |
  7 | // MARK: Global constants
    :
 23 | public let swiftStringConstant = "s"
 24 | public let swiftClassConstant = SwiftHelperClass()
 25 | public let swiftKotlinClassConstant = KotlinHelperClass()
    |            |- note: add '@MainActor' to make let 'swiftKotlinClassConstant' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 | // MARK: Global optional constants
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:44:12: warning: let 'swiftOptionalClassConstant' is not concurrency-safe because non-'Sendable' type 'SwiftHelperClass?' may have shared mutable state; this is an error in the Swift 6 language mode
 42 | public let swiftOptionalUnsignedIntConstant: UInt? = UInt(3_000_000_000)
 43 | public let swiftOptionalStringConstant: String? = "s"
 44 | public let swiftOptionalClassConstant: SwiftHelperClass? = SwiftHelperClass()
    |            |- warning: let 'swiftOptionalClassConstant' is not concurrency-safe because non-'Sendable' type 'SwiftHelperClass?' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: add '@MainActor' to make let 'swiftOptionalClassConstant' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 45 | public let swiftOptionalKotlinClassConstant: KotlinHelperClass? = KotlinHelperClass()
 46 |
    :
165 | }
166 |
167 | public final class SwiftHelperClass: SwiftProtocol, SwiftGenericProtocol, Comparable, Identifiable {
    |                    `- note: class 'SwiftHelperClass' does not conform to the 'Sendable' protocol
168 |     public var id: String {
169 |         return stringVar
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:45:12: warning: let 'swiftOptionalKotlinClassConstant' is not concurrency-safe because non-'Sendable' type 'KotlinHelperClass?' may have shared mutable state; this is an error in the Swift 6 language mode
 43 | public let swiftOptionalStringConstant: String? = "s"
 44 | public let swiftOptionalClassConstant: SwiftHelperClass? = SwiftHelperClass()
 45 | public let swiftOptionalKotlinClassConstant: KotlinHelperClass? = KotlinHelperClass()
    |            |- warning: let 'swiftOptionalKotlinClassConstant' is not concurrency-safe because non-'Sendable' type 'KotlinHelperClass?' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: add '@MainActor' to make let 'swiftOptionalKotlinClassConstant' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |
 47 | // MARK: Global vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamplesHelpers/Helpers.swift:5:14: note: class 'KotlinHelperClass' does not conform to the 'Sendable' protocol
 3 | #if !SKIP_BRIDGE
 4 |
 5 | public class KotlinHelperClass: KotlinProtocol {
   |              `- note: class 'KotlinHelperClass' does not conform to the 'Sendable' protocol
 6 |     public var stringVar = "s"
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:49:12: warning: var 'swiftBoolVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 | // MARK: Global vars
 48 |
 49 | public var swiftBoolVar = true
    |            |- warning: var 'swiftBoolVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftBoolVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftBoolVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 | // TODO: Char
 51 | public var swiftDoubleVar = 1.0
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:51:12: warning: var 'swiftDoubleVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | public var swiftBoolVar = true
 50 | // TODO: Char
 51 | public var swiftDoubleVar = 1.0
    |            |- warning: var 'swiftDoubleVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftDoubleVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftDoubleVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 | public var swiftFloatVar: Float = 2.0
 53 | public var swiftInt8Var: Int8 = 3
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:52:12: warning: var 'swiftFloatVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 50 | // TODO: Char
 51 | public var swiftDoubleVar = 1.0
 52 | public var swiftFloatVar: Float = 2.0
    |            |- warning: var 'swiftFloatVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftFloatVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftFloatVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 | public var swiftInt8Var: Int8 = 3
 54 | public var swiftInt16Var: Int16 = 4
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:53:12: warning: var 'swiftInt8Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 51 | public var swiftDoubleVar = 1.0
 52 | public var swiftFloatVar: Float = 2.0
 53 | public var swiftInt8Var: Int8 = 3
    |            |- warning: var 'swiftInt8Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftInt8Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftInt8Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 | public var swiftInt16Var: Int16 = 4
 55 | public var swiftInt32Var: Int32 = 5
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:54:12: warning: var 'swiftInt16Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 52 | public var swiftFloatVar: Float = 2.0
 53 | public var swiftInt8Var: Int8 = 3
 54 | public var swiftInt16Var: Int16 = 4
    |            |- warning: var 'swiftInt16Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftInt16Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftInt16Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 | public var swiftInt32Var: Int32 = 5
 56 | public var swiftInt64Var: Int64 = 6
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:55:12: warning: var 'swiftInt32Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 53 | public var swiftInt8Var: Int8 = 3
 54 | public var swiftInt16Var: Int16 = 4
 55 | public var swiftInt32Var: Int32 = 5
    |            |- warning: var 'swiftInt32Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftInt32Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftInt32Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 | public var swiftInt64Var: Int64 = 6
 57 | public var swiftIntVar = 7
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:56:12: warning: var 'swiftInt64Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 54 | public var swiftInt16Var: Int16 = 4
 55 | public var swiftInt32Var: Int32 = 5
 56 | public var swiftInt64Var: Int64 = 6
    |            |- warning: var 'swiftInt64Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftInt64Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftInt64Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 57 | public var swiftIntVar = 7
 58 | public var swiftUnsignedInt8Var = UInt8(200)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:57:12: warning: var 'swiftIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 55 | public var swiftInt32Var: Int32 = 5
 56 | public var swiftInt64Var: Int64 = 6
 57 | public var swiftIntVar = 7
    |            |- warning: var 'swiftIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftIntVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftIntVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 | public var swiftUnsignedInt8Var = UInt8(200)
 59 | public var swiftUnsignedInt16Var = UInt16(40_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:58:12: warning: var 'swiftUnsignedInt8Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 56 | public var swiftInt64Var: Int64 = 6
 57 | public var swiftIntVar = 7
 58 | public var swiftUnsignedInt8Var = UInt8(200)
    |            |- warning: var 'swiftUnsignedInt8Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftUnsignedInt8Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftUnsignedInt8Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 59 | public var swiftUnsignedInt16Var = UInt16(40_000)
 60 | public var swiftUnsignedInt32Var = UInt32(3_000_000_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:59:12: warning: var 'swiftUnsignedInt16Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 57 | public var swiftIntVar = 7
 58 | public var swiftUnsignedInt8Var = UInt8(200)
 59 | public var swiftUnsignedInt16Var = UInt16(40_000)
    |            |- warning: var 'swiftUnsignedInt16Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftUnsignedInt16Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftUnsignedInt16Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 60 | public var swiftUnsignedInt32Var = UInt32(3_000_000_000)
 61 | public var swiftUnsignedInt64Var = UInt64(3_000_000_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:60:12: warning: var 'swiftUnsignedInt32Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 58 | public var swiftUnsignedInt8Var = UInt8(200)
 59 | public var swiftUnsignedInt16Var = UInt16(40_000)
 60 | public var swiftUnsignedInt32Var = UInt32(3_000_000_000)
    |            |- warning: var 'swiftUnsignedInt32Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftUnsignedInt32Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftUnsignedInt32Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 | public var swiftUnsignedInt64Var = UInt64(3_000_000_000)
 62 | public var swiftUnsignedIntVar = UInt(3_000_000_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:61:12: warning: var 'swiftUnsignedInt64Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 59 | public var swiftUnsignedInt16Var = UInt16(40_000)
 60 | public var swiftUnsignedInt32Var = UInt32(3_000_000_000)
 61 | public var swiftUnsignedInt64Var = UInt64(3_000_000_000)
    |            |- warning: var 'swiftUnsignedInt64Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftUnsignedInt64Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftUnsignedInt64Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 62 | public var swiftUnsignedIntVar = UInt(3_000_000_000)
 63 | public var swiftStringVar = "s"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:62:12: warning: var 'swiftUnsignedIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 60 | public var swiftUnsignedInt32Var = UInt32(3_000_000_000)
 61 | public var swiftUnsignedInt64Var = UInt64(3_000_000_000)
 62 | public var swiftUnsignedIntVar = UInt(3_000_000_000)
    |            |- warning: var 'swiftUnsignedIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftUnsignedIntVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftUnsignedIntVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 63 | public var swiftStringVar = "s"
 64 | public var swiftNSNumberVar = NSNumber(value: 100)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:63:12: warning: var 'swiftStringVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 61 | public var swiftUnsignedInt64Var = UInt64(3_000_000_000)
 62 | public var swiftUnsignedIntVar = UInt(3_000_000_000)
 63 | public var swiftStringVar = "s"
    |            |- warning: var 'swiftStringVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftStringVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftStringVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 | public var swiftNSNumberVar = NSNumber(value: 100)
 65 | public var swiftClassVar = SwiftHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:64:12: warning: var 'swiftNSNumberVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 62 | public var swiftUnsignedIntVar = UInt(3_000_000_000)
 63 | public var swiftStringVar = "s"
 64 | public var swiftNSNumberVar = NSNumber(value: 100)
    |            |- warning: var 'swiftNSNumberVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftNSNumberVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftNSNumberVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 | public var swiftClassVar = SwiftHelperClass()
 66 | public var swiftBaseClassVar = SwiftClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:65:12: warning: var 'swiftClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 63 | public var swiftStringVar = "s"
 64 | public var swiftNSNumberVar = NSNumber(value: 100)
 65 | public var swiftClassVar = SwiftHelperClass()
    |            |- warning: var 'swiftClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftClassVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftClassVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 | public var swiftBaseClassVar = SwiftClass()
 67 | public var swiftInnerClassVar = SwiftHelperClass.Inner()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:66:12: warning: var 'swiftBaseClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 64 | public var swiftNSNumberVar = NSNumber(value: 100)
 65 | public var swiftClassVar = SwiftHelperClass()
 66 | public var swiftBaseClassVar = SwiftClass()
    |            |- warning: var 'swiftBaseClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftBaseClassVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftBaseClassVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 67 | public var swiftInnerClassVar = SwiftHelperClass.Inner()
 68 | public var swiftKotlinClassVar = KotlinHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:67:12: warning: var 'swiftInnerClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 65 | public var swiftClassVar = SwiftHelperClass()
 66 | public var swiftBaseClassVar = SwiftClass()
 67 | public var swiftInnerClassVar = SwiftHelperClass.Inner()
    |            |- warning: var 'swiftInnerClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftInnerClassVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftInnerClassVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 | public var swiftKotlinClassVar = KotlinHelperClass()
 69 | public var swiftAnyVar: Any = "a"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:68:12: warning: var 'swiftKotlinClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 66 | public var swiftBaseClassVar = SwiftClass()
 67 | public var swiftInnerClassVar = SwiftHelperClass.Inner()
 68 | public var swiftKotlinClassVar = KotlinHelperClass()
    |            |- warning: var 'swiftKotlinClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftKotlinClassVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftKotlinClassVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 | public var swiftAnyVar: Any = "a"
 70 | public var swiftAnyHashableVar: AnyHashable = 1
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:69:12: warning: var 'swiftAnyVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 67 | public var swiftInnerClassVar = SwiftHelperClass.Inner()
 68 | public var swiftKotlinClassVar = KotlinHelperClass()
 69 | public var swiftAnyVar: Any = "a"
    |            |- warning: var 'swiftAnyVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftAnyVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftAnyVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 | public var swiftAnyHashableVar: AnyHashable = 1
 71 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:70:12: warning: var 'swiftAnyHashableVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 68 | public var swiftKotlinClassVar = KotlinHelperClass()
 69 | public var swiftAnyVar: Any = "a"
 70 | public var swiftAnyHashableVar: AnyHashable = 1
    |            |- warning: var 'swiftAnyHashableVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftAnyHashableVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftAnyHashableVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 71 |
 72 | // MARK: Global optional vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:74:12: warning: var 'swiftOptionalBoolVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 72 | // MARK: Global optional vars
 73 |
 74 | public var swiftOptionalBoolVar: Bool? = true
    |            |- warning: var 'swiftOptionalBoolVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftOptionalBoolVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftOptionalBoolVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 | // TODO: Optional char
 76 | public var swiftOptionalDoubleVar: Double? = 1.0
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:76:12: warning: var 'swiftOptionalDoubleVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 74 | public var swiftOptionalBoolVar: Bool? = true
 75 | // TODO: Optional char
 76 | public var swiftOptionalDoubleVar: Double? = 1.0
    |            |- warning: var 'swiftOptionalDoubleVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftOptionalDoubleVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftOptionalDoubleVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 | public var swiftOptionalFloatVar: Float? = 2.0
 78 | public var swiftOptionalInt8Var: Int8? = nil
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:77:12: warning: var 'swiftOptionalFloatVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 | // TODO: Optional char
 76 | public var swiftOptionalDoubleVar: Double? = 1.0
 77 | public var swiftOptionalFloatVar: Float? = 2.0
    |            |- warning: var 'swiftOptionalFloatVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftOptionalFloatVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftOptionalFloatVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 | public var swiftOptionalInt8Var: Int8? = nil
 79 | public var swiftOptionalInt16Var: Int16? = 3
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:78:12: warning: var 'swiftOptionalInt8Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 | public var swiftOptionalDoubleVar: Double? = 1.0
 77 | public var swiftOptionalFloatVar: Float? = 2.0
 78 | public var swiftOptionalInt8Var: Int8? = nil
    |            |- warning: var 'swiftOptionalInt8Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftOptionalInt8Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftOptionalInt8Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 | public var swiftOptionalInt16Var: Int16? = 3
 80 | public var swiftOptionalInt32Var: Int32? = 4
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:79:12: warning: var 'swiftOptionalInt16Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 77 | public var swiftOptionalFloatVar: Float? = 2.0
 78 | public var swiftOptionalInt8Var: Int8? = nil
 79 | public var swiftOptionalInt16Var: Int16? = 3
    |            |- warning: var 'swiftOptionalInt16Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftOptionalInt16Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftOptionalInt16Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 | public var swiftOptionalInt32Var: Int32? = 4
 81 | public var swiftOptionalInt64Var: Int64? = 5
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:80:12: warning: var 'swiftOptionalInt32Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 78 | public var swiftOptionalInt8Var: Int8? = nil
 79 | public var swiftOptionalInt16Var: Int16? = 3
 80 | public var swiftOptionalInt32Var: Int32? = 4
    |            |- warning: var 'swiftOptionalInt32Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftOptionalInt32Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftOptionalInt32Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 | public var swiftOptionalInt64Var: Int64? = 5
 82 | public var swiftOptionalIntVar: Int? = 6
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:81:12: warning: var 'swiftOptionalInt64Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 79 | public var swiftOptionalInt16Var: Int16? = 3
 80 | public var swiftOptionalInt32Var: Int32? = 4
 81 | public var swiftOptionalInt64Var: Int64? = 5
    |            |- warning: var 'swiftOptionalInt64Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftOptionalInt64Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftOptionalInt64Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 | public var swiftOptionalIntVar: Int? = 6
 83 | public var swiftOptionalUnsignedInt8Var: UInt8? = UInt8(200)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:82:12: warning: var 'swiftOptionalIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 80 | public var swiftOptionalInt32Var: Int32? = 4
 81 | public var swiftOptionalInt64Var: Int64? = 5
 82 | public var swiftOptionalIntVar: Int? = 6
    |            |- warning: var 'swiftOptionalIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftOptionalIntVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftOptionalIntVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 | public var swiftOptionalUnsignedInt8Var: UInt8? = UInt8(200)
 84 | public var swiftOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:83:12: warning: var 'swiftOptionalUnsignedInt8Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 81 | public var swiftOptionalInt64Var: Int64? = 5
 82 | public var swiftOptionalIntVar: Int? = 6
 83 | public var swiftOptionalUnsignedInt8Var: UInt8? = UInt8(200)
    |            |- warning: var 'swiftOptionalUnsignedInt8Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftOptionalUnsignedInt8Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftOptionalUnsignedInt8Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 84 | public var swiftOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
 85 | public var swiftOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:84:12: warning: var 'swiftOptionalUnsignedInt16Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 82 | public var swiftOptionalIntVar: Int? = 6
 83 | public var swiftOptionalUnsignedInt8Var: UInt8? = UInt8(200)
 84 | public var swiftOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
    |            |- warning: var 'swiftOptionalUnsignedInt16Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftOptionalUnsignedInt16Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftOptionalUnsignedInt16Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 | public var swiftOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
 86 | public var swiftOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:85:12: warning: var 'swiftOptionalUnsignedInt32Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 83 | public var swiftOptionalUnsignedInt8Var: UInt8? = UInt8(200)
 84 | public var swiftOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
 85 | public var swiftOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
    |            |- warning: var 'swiftOptionalUnsignedInt32Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftOptionalUnsignedInt32Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftOptionalUnsignedInt32Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 86 | public var swiftOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
 87 | public var swiftOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:86:12: warning: var 'swiftOptionalUnsignedInt64Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 84 | public var swiftOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
 85 | public var swiftOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
 86 | public var swiftOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
    |            |- warning: var 'swiftOptionalUnsignedInt64Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftOptionalUnsignedInt64Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftOptionalUnsignedInt64Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 87 | public var swiftOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
 88 | public var swiftOptionalStringVar: String? = "s"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:87:12: warning: var 'swiftOptionalUnsignedIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 85 | public var swiftOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
 86 | public var swiftOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
 87 | public var swiftOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
    |            |- warning: var 'swiftOptionalUnsignedIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftOptionalUnsignedIntVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftOptionalUnsignedIntVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 | public var swiftOptionalStringVar: String? = "s"
 89 | public var swiftOptionalClassVar: SwiftHelperClass? = SwiftHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:88:12: warning: var 'swiftOptionalStringVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 86 | public var swiftOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
 87 | public var swiftOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
 88 | public var swiftOptionalStringVar: String? = "s"
    |            |- warning: var 'swiftOptionalStringVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftOptionalStringVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftOptionalStringVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 | public var swiftOptionalClassVar: SwiftHelperClass? = SwiftHelperClass()
 90 | public var swiftOptionalKotlinClassVar: KotlinHelperClass? = KotlinHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:89:12: warning: var 'swiftOptionalClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 87 | public var swiftOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
 88 | public var swiftOptionalStringVar: String? = "s"
 89 | public var swiftOptionalClassVar: SwiftHelperClass? = SwiftHelperClass()
    |            |- warning: var 'swiftOptionalClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftOptionalClassVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftOptionalClassVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 90 | public var swiftOptionalKotlinClassVar: KotlinHelperClass? = KotlinHelperClass()
 91 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:90:12: warning: var 'swiftOptionalKotlinClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 88 | public var swiftOptionalStringVar: String? = "s"
 89 | public var swiftOptionalClassVar: SwiftHelperClass? = SwiftHelperClass()
 90 | public var swiftOptionalKotlinClassVar: KotlinHelperClass? = KotlinHelperClass()
    |            |- warning: var 'swiftOptionalKotlinClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftOptionalKotlinClassVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftOptionalKotlinClassVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 | // MARK: Global computed vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:125:23: warning: static property 'staticIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
123 | public class SwiftClass {
124 |     public static let staticIntConstant = 1
125 |     public static var staticIntVar = 1
    |                       |- warning: static property 'staticIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'staticIntVar' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'staticIntVar' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |     public static func staticFunc(string: String) -> String {
127 |         return "swift" + string
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:390:12: warning: var 'swiftClosure0Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
388 | // MARK: Closures
389 |
390 | public var swiftClosure0Var: () -> Void = { print("original") }
    |            |- warning: var 'swiftClosure0Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftClosure0Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftClosure0Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
391 | public var swiftClosure1Var: (Int) -> String = { i in "value = \(i)" }
392 | public var swiftClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:391:12: warning: var 'swiftClosure1Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
389 |
390 | public var swiftClosure0Var: () -> Void = { print("original") }
391 | public var swiftClosure1Var: (Int) -> String = { i in "value = \(i)" }
    |            |- warning: var 'swiftClosure1Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftClosure1Var' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftClosure1Var' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
392 | public var swiftClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
393 | public var swiftClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:392:12: warning: var 'swiftClosure1PrimitivesVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
390 | public var swiftClosure0Var: () -> Void = { print("original") }
391 | public var swiftClosure1Var: (Int) -> String = { i in "value = \(i)" }
392 | public var swiftClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
    |            |- warning: var 'swiftClosure1PrimitivesVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftClosure1PrimitivesVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftClosure1PrimitivesVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
393 | public var swiftClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
394 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:393:12: warning: var 'swiftClosure1OptionalsVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
391 | public var swiftClosure1Var: (Int) -> String = { i in "value = \(i)" }
392 | public var swiftClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
393 | public var swiftClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
    |            |- warning: var 'swiftClosure1OptionalsVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftClosure1OptionalsVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftClosure1OptionalsVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
394 |
395 | // MARK: Containers
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:397:12: warning: var 'swiftIntArrayVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
395 | // MARK: Containers
396 |
397 | public var swiftIntArrayVar = [1, 2, 3]
    |            |- warning: var 'swiftIntArrayVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftIntArrayVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftIntArrayVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
398 | public var swiftStringSetVar: Set<String> = ["a", "b", "c"]
399 | public var swiftIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:398:12: warning: var 'swiftStringSetVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
396 |
397 | public var swiftIntArrayVar = [1, 2, 3]
398 | public var swiftStringSetVar: Set<String> = ["a", "b", "c"]
    |            |- warning: var 'swiftStringSetVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftStringSetVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftStringSetVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
399 | public var swiftIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
400 | public var swiftIntStringTuple = (1, "s")
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:399:12: warning: var 'swiftIntStringDictionaryVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
397 | public var swiftIntArrayVar = [1, 2, 3]
398 | public var swiftStringSetVar: Set<String> = ["a", "b", "c"]
399 | public var swiftIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
    |            |- warning: var 'swiftIntStringDictionaryVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftIntStringDictionaryVar' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftIntStringDictionaryVar' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
400 | public var swiftIntStringTuple = (1, "s")
401 | public var swiftIntErrorResult: Result<Int, SwiftError> = .success(1)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:400:12: warning: var 'swiftIntStringTuple' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
398 | public var swiftStringSetVar: Set<String> = ["a", "b", "c"]
399 | public var swiftIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
400 | public var swiftIntStringTuple = (1, "s")
    |            |- warning: var 'swiftIntStringTuple' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftIntStringTuple' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftIntStringTuple' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
401 | public var swiftIntErrorResult: Result<Int, SwiftError> = .success(1)
402 | public var swiftHashable1: AnyHashable = SwiftHashable(HashableEnum.first)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:401:12: warning: var 'swiftIntErrorResult' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
399 | public var swiftIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
400 | public var swiftIntStringTuple = (1, "s")
401 | public var swiftIntErrorResult: Result<Int, SwiftError> = .success(1)
    |            |- warning: var 'swiftIntErrorResult' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftIntErrorResult' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftIntErrorResult' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
402 | public var swiftHashable1: AnyHashable = SwiftHashable(HashableEnum.first)
403 | public var swiftHashable2: AnyHashable = SwiftHashable(HashableEnum.first)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:402:12: warning: var 'swiftHashable1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
400 | public var swiftIntStringTuple = (1, "s")
401 | public var swiftIntErrorResult: Result<Int, SwiftError> = .success(1)
402 | public var swiftHashable1: AnyHashable = SwiftHashable(HashableEnum.first)
    |            |- warning: var 'swiftHashable1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftHashable1' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftHashable1' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
403 | public var swiftHashable2: AnyHashable = SwiftHashable(HashableEnum.first)
404 | public var swiftHashable3: AnyHashable = SwiftHashable(HashableEnum.second)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:403:12: warning: var 'swiftHashable2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
401 | public var swiftIntErrorResult: Result<Int, SwiftError> = .success(1)
402 | public var swiftHashable1: AnyHashable = SwiftHashable(HashableEnum.first)
403 | public var swiftHashable2: AnyHashable = SwiftHashable(HashableEnum.first)
    |            |- warning: var 'swiftHashable2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftHashable2' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftHashable2' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
404 | public var swiftHashable3: AnyHashable = SwiftHashable(HashableEnum.second)
405 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:404:12: warning: var 'swiftHashable3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
402 | public var swiftHashable1: AnyHashable = SwiftHashable(HashableEnum.first)
403 | public var swiftHashable2: AnyHashable = SwiftHashable(HashableEnum.first)
404 | public var swiftHashable3: AnyHashable = SwiftHashable(HashableEnum.second)
    |            |- warning: var 'swiftHashable3' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: convert 'swiftHashable3' to a 'let' constant to make 'Sendable' shared state immutable
    |            |- note: add '@MainActor' to make var 'swiftHashable3' part of global actor 'MainActor'
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
405 |
406 | // SKIP @nobridge
[173/178] Write Objects.LinkFileList
[175/181] Compiling SkipBridgeToSwiftSamplesTestsSupport resource_bundle_accessor.swift
[175/181] Linking libSkipBridgeToSwiftSamples.dylib
[176/181] Linking libSkipBridgeToKotlinSamples.dylib
[178/181] Compiling SkipBridgeToSwiftSamplesTestsSupport TestsSupport.swift
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:131:5: warning: reference to var 'kotlinBoolVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 129 |
 130 | public func testSupport_kotlinBoolVar(value: Bool) -> Bool {
 131 |     kotlinBoolVar = value
     |     `- warning: reference to var 'kotlinBoolVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 132 |     return kotlinBoolVar
 133 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:50:12: note: var declared here
 48 | // MARK: Global vars
 49 |
 50 | public var kotlinBoolVar = true
    |            `- note: var declared here
 51 | // TODO: Char
 52 | public var kotlinDoubleVar = 1.0
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:132:12: warning: reference to var 'kotlinBoolVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 130 | public func testSupport_kotlinBoolVar(value: Bool) -> Bool {
 131 |     kotlinBoolVar = value
 132 |     return kotlinBoolVar
     |            `- warning: reference to var 'kotlinBoolVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 133 | }
 134 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:50:12: note: var declared here
 48 | // MARK: Global vars
 49 |
 50 | public var kotlinBoolVar = true
    |            `- note: var declared here
 51 | // TODO: Char
 52 | public var kotlinDoubleVar = 1.0
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:136:5: warning: reference to var 'kotlinDoubleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 134 |
 135 | public func testSupport_kotlinDoubleVar(value: Double) -> Double {
 136 |     kotlinDoubleVar = value
     |     `- warning: reference to var 'kotlinDoubleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 137 |     return kotlinDoubleVar
 138 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:52:12: note: var declared here
 50 | public var kotlinBoolVar = true
 51 | // TODO: Char
 52 | public var kotlinDoubleVar = 1.0
    |            `- note: var declared here
 53 | public var kotlinFloatVar = Float(2.0)
 54 | public var kotlinInt8Var = Int8(3)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:137:12: warning: reference to var 'kotlinDoubleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 135 | public func testSupport_kotlinDoubleVar(value: Double) -> Double {
 136 |     kotlinDoubleVar = value
 137 |     return kotlinDoubleVar
     |            `- warning: reference to var 'kotlinDoubleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 138 | }
 139 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:52:12: note: var declared here
 50 | public var kotlinBoolVar = true
 51 | // TODO: Char
 52 | public var kotlinDoubleVar = 1.0
    |            `- note: var declared here
 53 | public var kotlinFloatVar = Float(2.0)
 54 | public var kotlinInt8Var = Int8(3)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:141:5: warning: reference to var 'kotlinFloatVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 139 |
 140 | public func testSupport_kotlinFloatVar(value: Float) -> Float {
 141 |     kotlinFloatVar = value
     |     `- warning: reference to var 'kotlinFloatVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 142 |     return kotlinFloatVar
 143 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:53:12: note: var declared here
 51 | // TODO: Char
 52 | public var kotlinDoubleVar = 1.0
 53 | public var kotlinFloatVar = Float(2.0)
    |            `- note: var declared here
 54 | public var kotlinInt8Var = Int8(3)
 55 | public var kotlinInt16Var = Int16(4)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:142:12: warning: reference to var 'kotlinFloatVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 140 | public func testSupport_kotlinFloatVar(value: Float) -> Float {
 141 |     kotlinFloatVar = value
 142 |     return kotlinFloatVar
     |            `- warning: reference to var 'kotlinFloatVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 143 | }
 144 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:53:12: note: var declared here
 51 | // TODO: Char
 52 | public var kotlinDoubleVar = 1.0
 53 | public var kotlinFloatVar = Float(2.0)
    |            `- note: var declared here
 54 | public var kotlinInt8Var = Int8(3)
 55 | public var kotlinInt16Var = Int16(4)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:146:5: warning: reference to var 'kotlinInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 144 |
 145 | public func testSupport_kotlinInt8Var(value: Int8) -> Int8 {
 146 |     kotlinInt8Var = value
     |     `- warning: reference to var 'kotlinInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 147 |     return kotlinInt8Var
 148 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:54:12: note: var declared here
 52 | public var kotlinDoubleVar = 1.0
 53 | public var kotlinFloatVar = Float(2.0)
 54 | public var kotlinInt8Var = Int8(3)
    |            `- note: var declared here
 55 | public var kotlinInt16Var = Int16(4)
 56 | public var kotlinInt32Var = Int32(5)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:147:12: warning: reference to var 'kotlinInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 145 | public func testSupport_kotlinInt8Var(value: Int8) -> Int8 {
 146 |     kotlinInt8Var = value
 147 |     return kotlinInt8Var
     |            `- warning: reference to var 'kotlinInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 148 | }
 149 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:54:12: note: var declared here
 52 | public var kotlinDoubleVar = 1.0
 53 | public var kotlinFloatVar = Float(2.0)
 54 | public var kotlinInt8Var = Int8(3)
    |            `- note: var declared here
 55 | public var kotlinInt16Var = Int16(4)
 56 | public var kotlinInt32Var = Int32(5)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:151:5: warning: reference to var 'kotlinInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 149 |
 150 | public func testSupport_kotlinInt16Var(value: Int16) -> Int16 {
 151 |     kotlinInt16Var = value
     |     `- warning: reference to var 'kotlinInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 152 |     return kotlinInt16Var
 153 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:55:12: note: var declared here
 53 | public var kotlinFloatVar = Float(2.0)
 54 | public var kotlinInt8Var = Int8(3)
 55 | public var kotlinInt16Var = Int16(4)
    |            `- note: var declared here
 56 | public var kotlinInt32Var = Int32(5)
 57 | public var kotlinInt64Var = Int64(6)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:152:12: warning: reference to var 'kotlinInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 150 | public func testSupport_kotlinInt16Var(value: Int16) -> Int16 {
 151 |     kotlinInt16Var = value
 152 |     return kotlinInt16Var
     |            `- warning: reference to var 'kotlinInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 153 | }
 154 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:55:12: note: var declared here
 53 | public var kotlinFloatVar = Float(2.0)
 54 | public var kotlinInt8Var = Int8(3)
 55 | public var kotlinInt16Var = Int16(4)
    |            `- note: var declared here
 56 | public var kotlinInt32Var = Int32(5)
 57 | public var kotlinInt64Var = Int64(6)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:156:5: warning: reference to var 'kotlinInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 154 |
 155 | public func testSupport_kotlinInt32Var(value: Int32) -> Int32 {
 156 |     kotlinInt32Var = value
     |     `- warning: reference to var 'kotlinInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 157 |     return kotlinInt32Var
 158 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:56:12: note: var declared here
 54 | public var kotlinInt8Var = Int8(3)
 55 | public var kotlinInt16Var = Int16(4)
 56 | public var kotlinInt32Var = Int32(5)
    |            `- note: var declared here
 57 | public var kotlinInt64Var = Int64(6)
 58 | public var kotlinIntVar = 7
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:157:12: warning: reference to var 'kotlinInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 155 | public func testSupport_kotlinInt32Var(value: Int32) -> Int32 {
 156 |     kotlinInt32Var = value
 157 |     return kotlinInt32Var
     |            `- warning: reference to var 'kotlinInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 158 | }
 159 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:56:12: note: var declared here
 54 | public var kotlinInt8Var = Int8(3)
 55 | public var kotlinInt16Var = Int16(4)
 56 | public var kotlinInt32Var = Int32(5)
    |            `- note: var declared here
 57 | public var kotlinInt64Var = Int64(6)
 58 | public var kotlinIntVar = 7
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:161:5: warning: reference to var 'kotlinInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 159 |
 160 | public func testSupport_kotlinInt64Var(value: Int64) -> Int64 {
 161 |     kotlinInt64Var = value
     |     `- warning: reference to var 'kotlinInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 162 |     return kotlinInt64Var
 163 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:57:12: note: var declared here
 55 | public var kotlinInt16Var = Int16(4)
 56 | public var kotlinInt32Var = Int32(5)
 57 | public var kotlinInt64Var = Int64(6)
    |            `- note: var declared here
 58 | public var kotlinIntVar = 7
 59 | public var kotlinUnsignedInt8Var = UInt8(200)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:162:12: warning: reference to var 'kotlinInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 160 | public func testSupport_kotlinInt64Var(value: Int64) -> Int64 {
 161 |     kotlinInt64Var = value
 162 |     return kotlinInt64Var
     |            `- warning: reference to var 'kotlinInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 163 | }
 164 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:57:12: note: var declared here
 55 | public var kotlinInt16Var = Int16(4)
 56 | public var kotlinInt32Var = Int32(5)
 57 | public var kotlinInt64Var = Int64(6)
    |            `- note: var declared here
 58 | public var kotlinIntVar = 7
 59 | public var kotlinUnsignedInt8Var = UInt8(200)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:166:5: warning: reference to var 'kotlinIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 164 |
 165 | public func testSupport_kotlinIntVar(value: Int) -> Int {
 166 |     kotlinIntVar = value
     |     `- warning: reference to var 'kotlinIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 167 |     return kotlinIntVar
 168 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:58:12: note: var declared here
 56 | public var kotlinInt32Var = Int32(5)
 57 | public var kotlinInt64Var = Int64(6)
 58 | public var kotlinIntVar = 7
    |            `- note: var declared here
 59 | public var kotlinUnsignedInt8Var = UInt8(200)
 60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:167:12: warning: reference to var 'kotlinIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 165 | public func testSupport_kotlinIntVar(value: Int) -> Int {
 166 |     kotlinIntVar = value
 167 |     return kotlinIntVar
     |            `- warning: reference to var 'kotlinIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 168 | }
 169 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:58:12: note: var declared here
 56 | public var kotlinInt32Var = Int32(5)
 57 | public var kotlinInt64Var = Int64(6)
 58 | public var kotlinIntVar = 7
    |            `- note: var declared here
 59 | public var kotlinUnsignedInt8Var = UInt8(200)
 60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:171:5: warning: reference to var 'kotlinStringVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 169 |
 170 | public func testSupport_kotlinStringVar(value: String) -> String {
 171 |     kotlinStringVar = value
     |     `- warning: reference to var 'kotlinStringVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 172 |     return kotlinStringVar
 173 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:64:12: note: var declared here
 62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
 63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
 64 | public var kotlinStringVar = "s"
    |            `- note: var declared here
 65 | public var kotlinNSNumberVar = NSNumber(value: 100)
 66 | public var kotlinClassVar = KotlinHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:172:12: warning: reference to var 'kotlinStringVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 170 | public func testSupport_kotlinStringVar(value: String) -> String {
 171 |     kotlinStringVar = value
 172 |     return kotlinStringVar
     |            `- warning: reference to var 'kotlinStringVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 173 | }
 174 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:64:12: note: var declared here
 62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
 63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
 64 | public var kotlinStringVar = "s"
    |            `- note: var declared here
 65 | public var kotlinNSNumberVar = NSNumber(value: 100)
 66 | public var kotlinClassVar = KotlinHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:176:5: warning: reference to var 'kotlinNSNumberVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 174 |
 175 | public func testSupport_kotlinNSNumberVar(value: NSNumber) -> NSNumber {
 176 |     kotlinNSNumberVar = value
     |     `- warning: reference to var 'kotlinNSNumberVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 177 |     return kotlinNSNumberVar
 178 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:65:12: note: var declared here
 63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
 64 | public var kotlinStringVar = "s"
 65 | public var kotlinNSNumberVar = NSNumber(value: 100)
    |            `- note: var declared here
 66 | public var kotlinClassVar = KotlinHelperClass()
 67 | public var kotlinBaseClassVar = KotlinClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:177:12: warning: reference to var 'kotlinNSNumberVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 175 | public func testSupport_kotlinNSNumberVar(value: NSNumber) -> NSNumber {
 176 |     kotlinNSNumberVar = value
 177 |     return kotlinNSNumberVar
     |            `- warning: reference to var 'kotlinNSNumberVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 178 | }
 179 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:65:12: note: var declared here
 63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
 64 | public var kotlinStringVar = "s"
 65 | public var kotlinNSNumberVar = NSNumber(value: 100)
    |            `- note: var declared here
 66 | public var kotlinClassVar = KotlinHelperClass()
 67 | public var kotlinBaseClassVar = KotlinClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:181:5: warning: reference to var 'kotlinUnsignedInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 179 |
 180 | public func testSupport_kotlinUnsignedInt8Var(value: UInt8) -> UInt8 {
 181 |     kotlinUnsignedInt8Var = value
     |     `- warning: reference to var 'kotlinUnsignedInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 182 |     return kotlinUnsignedInt8Var
 183 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:59:12: note: var declared here
 57 | public var kotlinInt64Var = Int64(6)
 58 | public var kotlinIntVar = 7
 59 | public var kotlinUnsignedInt8Var = UInt8(200)
    |            `- note: var declared here
 60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
 61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:182:12: warning: reference to var 'kotlinUnsignedInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 180 | public func testSupport_kotlinUnsignedInt8Var(value: UInt8) -> UInt8 {
 181 |     kotlinUnsignedInt8Var = value
 182 |     return kotlinUnsignedInt8Var
     |            `- warning: reference to var 'kotlinUnsignedInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 183 | }
 184 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:59:12: note: var declared here
 57 | public var kotlinInt64Var = Int64(6)
 58 | public var kotlinIntVar = 7
 59 | public var kotlinUnsignedInt8Var = UInt8(200)
    |            `- note: var declared here
 60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
 61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:186:5: warning: reference to var 'kotlinUnsignedInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 184 |
 185 | public func testSupport_kotlinUnsignedInt16Var(value: UInt16) -> UInt16 {
 186 |     kotlinUnsignedInt16Var = value
     |     `- warning: reference to var 'kotlinUnsignedInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 187 |     return kotlinUnsignedInt16Var
 188 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:60:12: note: var declared here
 58 | public var kotlinIntVar = 7
 59 | public var kotlinUnsignedInt8Var = UInt8(200)
 60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
    |            `- note: var declared here
 61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
 62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:187:12: warning: reference to var 'kotlinUnsignedInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 185 | public func testSupport_kotlinUnsignedInt16Var(value: UInt16) -> UInt16 {
 186 |     kotlinUnsignedInt16Var = value
 187 |     return kotlinUnsignedInt16Var
     |            `- warning: reference to var 'kotlinUnsignedInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 188 | }
 189 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:60:12: note: var declared here
 58 | public var kotlinIntVar = 7
 59 | public var kotlinUnsignedInt8Var = UInt8(200)
 60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
    |            `- note: var declared here
 61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
 62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:191:5: warning: reference to var 'kotlinUnsignedInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 189 |
 190 | public func testSupport_kotlinUnsignedInt32Var(value: UInt32) -> UInt32 {
 191 |     kotlinUnsignedInt32Var = value
     |     `- warning: reference to var 'kotlinUnsignedInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 192 |     return kotlinUnsignedInt32Var
 193 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:61:12: note: var declared here
 59 | public var kotlinUnsignedInt8Var = UInt8(200)
 60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
 61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
    |            `- note: var declared here
 62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
 63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:192:12: warning: reference to var 'kotlinUnsignedInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 190 | public func testSupport_kotlinUnsignedInt32Var(value: UInt32) -> UInt32 {
 191 |     kotlinUnsignedInt32Var = value
 192 |     return kotlinUnsignedInt32Var
     |            `- warning: reference to var 'kotlinUnsignedInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 193 | }
 194 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:61:12: note: var declared here
 59 | public var kotlinUnsignedInt8Var = UInt8(200)
 60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
 61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
    |            `- note: var declared here
 62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
 63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:196:5: warning: reference to var 'kotlinUnsignedInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 194 |
 195 | public func testSupport_kotlinUnsignedInt64Var(value: UInt64) -> UInt64 {
 196 |     kotlinUnsignedInt64Var = value
     |     `- warning: reference to var 'kotlinUnsignedInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 197 |     return kotlinUnsignedInt64Var
 198 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:62:12: note: var declared here
 60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
 61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
 62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
    |            `- note: var declared here
 63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
 64 | public var kotlinStringVar = "s"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:197:12: warning: reference to var 'kotlinUnsignedInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 195 | public func testSupport_kotlinUnsignedInt64Var(value: UInt64) -> UInt64 {
 196 |     kotlinUnsignedInt64Var = value
 197 |     return kotlinUnsignedInt64Var
     |            `- warning: reference to var 'kotlinUnsignedInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 198 | }
 199 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:62:12: note: var declared here
 60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
 61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
 62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
    |            `- note: var declared here
 63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
 64 | public var kotlinStringVar = "s"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:201:5: warning: reference to var 'kotlinUnsignedIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 199 |
 200 | public func testSupport_kotlinUnsignedIntVar(value: UInt) -> UInt {
 201 |     kotlinUnsignedIntVar = value
     |     `- warning: reference to var 'kotlinUnsignedIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 202 |     return kotlinUnsignedIntVar
 203 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:63:12: note: var declared here
 61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
 62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
 63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
    |            `- note: var declared here
 64 | public var kotlinStringVar = "s"
 65 | public var kotlinNSNumberVar = NSNumber(value: 100)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:202:12: warning: reference to var 'kotlinUnsignedIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 200 | public func testSupport_kotlinUnsignedIntVar(value: UInt) -> UInt {
 201 |     kotlinUnsignedIntVar = value
 202 |     return kotlinUnsignedIntVar
     |            `- warning: reference to var 'kotlinUnsignedIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 203 | }
 204 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:63:12: note: var declared here
 61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
 62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
 63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
    |            `- note: var declared here
 64 | public var kotlinStringVar = "s"
 65 | public var kotlinNSNumberVar = NSNumber(value: 100)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:208:5: warning: reference to var 'kotlinClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 206 |     let helper = KotlinHelperClass()
 207 |     helper.stringVar = value
 208 |     kotlinClassVar = helper
     |     `- warning: reference to var 'kotlinClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 209 |     return kotlinClassVar.stringVar
 210 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:66:12: note: var declared here
 64 | public var kotlinStringVar = "s"
 65 | public var kotlinNSNumberVar = NSNumber(value: 100)
 66 | public var kotlinClassVar = KotlinHelperClass()
    |            `- note: var declared here
 67 | public var kotlinBaseClassVar = KotlinClass()
 68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:209:12: warning: reference to var 'kotlinClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 207 |     helper.stringVar = value
 208 |     kotlinClassVar = helper
 209 |     return kotlinClassVar.stringVar
     |            `- warning: reference to var 'kotlinClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 210 | }
 211 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:66:12: note: var declared here
 64 | public var kotlinStringVar = "s"
 65 | public var kotlinNSNumberVar = NSNumber(value: 100)
 66 | public var kotlinClassVar = KotlinHelperClass()
    |            `- note: var declared here
 67 | public var kotlinBaseClassVar = KotlinClass()
 68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:215:5: warning: reference to var 'kotlinInnerClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 213 |     let inner = KotlinHelperClass.Inner()
 214 |     inner.intVar = value
 215 |     kotlinInnerClassVar = inner
     |     `- warning: reference to var 'kotlinInnerClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 216 |     return kotlinInnerClassVar.intVar
 217 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:68:12: note: var declared here
 66 | public var kotlinClassVar = KotlinHelperClass()
 67 | public var kotlinBaseClassVar = KotlinClass()
 68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
    |            `- note: var declared here
 69 | public var kotlinSwiftClassVar = SwiftHelperClass()
 70 | public var kotlinAnyVar: Any = "a"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:216:12: warning: reference to var 'kotlinInnerClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 214 |     inner.intVar = value
 215 |     kotlinInnerClassVar = inner
 216 |     return kotlinInnerClassVar.intVar
     |            `- warning: reference to var 'kotlinInnerClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 217 | }
 218 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:68:12: note: var declared here
 66 | public var kotlinClassVar = KotlinHelperClass()
 67 | public var kotlinBaseClassVar = KotlinClass()
 68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
    |            `- note: var declared here
 69 | public var kotlinSwiftClassVar = SwiftHelperClass()
 70 | public var kotlinAnyVar: Any = "a"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:222:5: warning: reference to var 'kotlinSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 220 |     let helper = SwiftHelperClass()
 221 |     helper.stringVar = value
 222 |     kotlinSwiftClassVar = helper
     |     `- warning: reference to var 'kotlinSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 223 |     return kotlinSwiftClassVar.stringVar
 224 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:69:12: note: var declared here
 67 | public var kotlinBaseClassVar = KotlinClass()
 68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
 69 | public var kotlinSwiftClassVar = SwiftHelperClass()
    |            `- note: var declared here
 70 | public var kotlinAnyVar: Any = "a"
 71 | public var kotlinAnyHashableVar: AnyHashable = 1
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:223:12: warning: reference to var 'kotlinSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 221 |     helper.stringVar = value
 222 |     kotlinSwiftClassVar = helper
 223 |     return kotlinSwiftClassVar.stringVar
     |            `- warning: reference to var 'kotlinSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 224 | }
 225 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:69:12: note: var declared here
 67 | public var kotlinBaseClassVar = KotlinClass()
 68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
 69 | public var kotlinSwiftClassVar = SwiftHelperClass()
    |            `- note: var declared here
 70 | public var kotlinAnyVar: Any = "a"
 71 | public var kotlinAnyHashableVar: AnyHashable = 1
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:227:5: warning: reference to var 'kotlinAnyVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 225 |
 226 | public func testSupport_kotlinAnyVar(value: Any) -> Any {
 227 |     kotlinAnyVar = value
     |     `- warning: reference to var 'kotlinAnyVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 228 |     return kotlinAnyVar
 229 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:70:12: note: var declared here
 68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
 69 | public var kotlinSwiftClassVar = SwiftHelperClass()
 70 | public var kotlinAnyVar: Any = "a"
    |            `- note: var declared here
 71 | public var kotlinAnyHashableVar: AnyHashable = 1
 72 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:228:12: warning: reference to var 'kotlinAnyVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 226 | public func testSupport_kotlinAnyVar(value: Any) -> Any {
 227 |     kotlinAnyVar = value
 228 |     return kotlinAnyVar
     |            `- warning: reference to var 'kotlinAnyVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 229 | }
 230 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:70:12: note: var declared here
 68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
 69 | public var kotlinSwiftClassVar = SwiftHelperClass()
 70 | public var kotlinAnyVar: Any = "a"
    |            `- note: var declared here
 71 | public var kotlinAnyHashableVar: AnyHashable = 1
 72 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:234:5: warning: reference to var 'kotlinAnyVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 232 |     let helper = KotlinHelperClass()
 233 |     helper.stringVar = value
 234 |     kotlinAnyVar = helper
     |     `- warning: reference to var 'kotlinAnyVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 235 |     return (kotlinAnyVar as? KotlinHelperClass)?.stringVar
 236 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:70:12: note: var declared here
 68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
 69 | public var kotlinSwiftClassVar = SwiftHelperClass()
 70 | public var kotlinAnyVar: Any = "a"
    |            `- note: var declared here
 71 | public var kotlinAnyHashableVar: AnyHashable = 1
 72 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:235:13: warning: reference to var 'kotlinAnyVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 233 |     helper.stringVar = value
 234 |     kotlinAnyVar = helper
 235 |     return (kotlinAnyVar as? KotlinHelperClass)?.stringVar
     |             `- warning: reference to var 'kotlinAnyVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 236 | }
 237 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:70:12: note: var declared here
 68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
 69 | public var kotlinSwiftClassVar = SwiftHelperClass()
 70 | public var kotlinAnyVar: Any = "a"
    |            `- note: var declared here
 71 | public var kotlinAnyHashableVar: AnyHashable = 1
 72 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:239:5: warning: reference to var 'kotlinAnyHashableVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 237 |
 238 | public func testSupport_kotlinAnyHashableVar(value: AnyHashable) -> AnyHashable {
 239 |     kotlinAnyHashableVar = value
     |     `- warning: reference to var 'kotlinAnyHashableVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 240 |     return kotlinAnyHashableVar
 241 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:71:12: note: var declared here
 69 | public var kotlinSwiftClassVar = SwiftHelperClass()
 70 | public var kotlinAnyVar: Any = "a"
 71 | public var kotlinAnyHashableVar: AnyHashable = 1
    |            `- note: var declared here
 72 |
 73 | // MARK: Global optional vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:240:12: warning: reference to var 'kotlinAnyHashableVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 238 | public func testSupport_kotlinAnyHashableVar(value: AnyHashable) -> AnyHashable {
 239 |     kotlinAnyHashableVar = value
 240 |     return kotlinAnyHashableVar
     |            `- warning: reference to var 'kotlinAnyHashableVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 241 | }
 242 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:71:12: note: var declared here
 69 | public var kotlinSwiftClassVar = SwiftHelperClass()
 70 | public var kotlinAnyVar: Any = "a"
 71 | public var kotlinAnyHashableVar: AnyHashable = 1
    |            `- note: var declared here
 72 |
 73 | // MARK: Global optional vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:246:5: warning: reference to var 'kotlinAnyHashableVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 244 |     let helper = KotlinHelperClass()
 245 |     helper.stringVar = value
 246 |     kotlinAnyHashableVar = helper
     |     `- warning: reference to var 'kotlinAnyHashableVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 247 |     return (kotlinAnyHashableVar as? KotlinHelperClass)?.stringVar
 248 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:71:12: note: var declared here
 69 | public var kotlinSwiftClassVar = SwiftHelperClass()
 70 | public var kotlinAnyVar: Any = "a"
 71 | public var kotlinAnyHashableVar: AnyHashable = 1
    |            `- note: var declared here
 72 |
 73 | // MARK: Global optional vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:247:13: warning: reference to var 'kotlinAnyHashableVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 245 |     helper.stringVar = value
 246 |     kotlinAnyHashableVar = helper
 247 |     return (kotlinAnyHashableVar as? KotlinHelperClass)?.stringVar
     |             `- warning: reference to var 'kotlinAnyHashableVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 248 | }
 249 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:71:12: note: var declared here
 69 | public var kotlinSwiftClassVar = SwiftHelperClass()
 70 | public var kotlinAnyVar: Any = "a"
 71 | public var kotlinAnyHashableVar: AnyHashable = 1
    |            `- note: var declared here
 72 |
 73 | // MARK: Global optional vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:251:5: warning: reference to var 'kotlinOptionalBoolVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 249 |
 250 | public func testSupport_kotlinOptionalBoolVar(value: Bool?) -> Bool? {
 251 |     kotlinOptionalBoolVar = value
     |     `- warning: reference to var 'kotlinOptionalBoolVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 252 |     return kotlinOptionalBoolVar
 253 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:75:12: note: var declared here
 73 | // MARK: Global optional vars
 74 |
 75 | public var kotlinOptionalBoolVar: Bool? = true
    |            `- note: var declared here
 76 | // TODO: Optional char
 77 | public var kotlinOptionalDoubleVar: Double? = 1.0
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:252:12: warning: reference to var 'kotlinOptionalBoolVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 250 | public func testSupport_kotlinOptionalBoolVar(value: Bool?) -> Bool? {
 251 |     kotlinOptionalBoolVar = value
 252 |     return kotlinOptionalBoolVar
     |            `- warning: reference to var 'kotlinOptionalBoolVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 253 | }
 254 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:75:12: note: var declared here
 73 | // MARK: Global optional vars
 74 |
 75 | public var kotlinOptionalBoolVar: Bool? = true
    |            `- note: var declared here
 76 | // TODO: Optional char
 77 | public var kotlinOptionalDoubleVar: Double? = 1.0
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:256:5: warning: reference to var 'kotlinOptionalDoubleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 254 |
 255 | public func testSupport_kotlinOptionalDoubleVar(value: Double?) -> Double? {
 256 |     kotlinOptionalDoubleVar = value
     |     `- warning: reference to var 'kotlinOptionalDoubleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 257 |     return kotlinOptionalDoubleVar
 258 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:77:12: note: var declared here
 75 | public var kotlinOptionalBoolVar: Bool? = true
 76 | // TODO: Optional char
 77 | public var kotlinOptionalDoubleVar: Double? = 1.0
    |            `- note: var declared here
 78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
 79 | public var kotlinOptionalInt8Var: Int8? = nil
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:257:12: warning: reference to var 'kotlinOptionalDoubleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 255 | public func testSupport_kotlinOptionalDoubleVar(value: Double?) -> Double? {
 256 |     kotlinOptionalDoubleVar = value
 257 |     return kotlinOptionalDoubleVar
     |            `- warning: reference to var 'kotlinOptionalDoubleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 258 | }
 259 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:77:12: note: var declared here
 75 | public var kotlinOptionalBoolVar: Bool? = true
 76 | // TODO: Optional char
 77 | public var kotlinOptionalDoubleVar: Double? = 1.0
    |            `- note: var declared here
 78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
 79 | public var kotlinOptionalInt8Var: Int8? = nil
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:261:5: warning: reference to var 'kotlinOptionalFloatVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 259 |
 260 | public func testSupport_kotlinOptionalFloatVar(value: Float?) -> Float? {
 261 |     kotlinOptionalFloatVar = value
     |     `- warning: reference to var 'kotlinOptionalFloatVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 262 |     return kotlinOptionalFloatVar
 263 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:78:12: note: var declared here
 76 | // TODO: Optional char
 77 | public var kotlinOptionalDoubleVar: Double? = 1.0
 78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
    |            `- note: var declared here
 79 | public var kotlinOptionalInt8Var: Int8? = nil
 80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:262:12: warning: reference to var 'kotlinOptionalFloatVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 260 | public func testSupport_kotlinOptionalFloatVar(value: Float?) -> Float? {
 261 |     kotlinOptionalFloatVar = value
 262 |     return kotlinOptionalFloatVar
     |            `- warning: reference to var 'kotlinOptionalFloatVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 263 | }
 264 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:78:12: note: var declared here
 76 | // TODO: Optional char
 77 | public var kotlinOptionalDoubleVar: Double? = 1.0
 78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
    |            `- note: var declared here
 79 | public var kotlinOptionalInt8Var: Int8? = nil
 80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:266:5: warning: reference to var 'kotlinOptionalInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 264 |
 265 | public func testSupport_kotlinOptionalInt8Var(value: Int8?) -> Int8? {
 266 |     kotlinOptionalInt8Var = value
     |     `- warning: reference to var 'kotlinOptionalInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 267 |     return kotlinOptionalInt8Var
 268 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:79:12: note: var declared here
 77 | public var kotlinOptionalDoubleVar: Double? = 1.0
 78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
 79 | public var kotlinOptionalInt8Var: Int8? = nil
    |            `- note: var declared here
 80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
 81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:267:12: warning: reference to var 'kotlinOptionalInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 265 | public func testSupport_kotlinOptionalInt8Var(value: Int8?) -> Int8? {
 266 |     kotlinOptionalInt8Var = value
 267 |     return kotlinOptionalInt8Var
     |            `- warning: reference to var 'kotlinOptionalInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 268 | }
 269 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:79:12: note: var declared here
 77 | public var kotlinOptionalDoubleVar: Double? = 1.0
 78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
 79 | public var kotlinOptionalInt8Var: Int8? = nil
    |            `- note: var declared here
 80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
 81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:271:5: warning: reference to var 'kotlinOptionalInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 269 |
 270 | public func testSupport_kotlinOptionalInt16Var(value: Int16?) -> Int16? {
 271 |     kotlinOptionalInt16Var = value
     |     `- warning: reference to var 'kotlinOptionalInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 272 |     return kotlinOptionalInt16Var
 273 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:80:12: note: var declared here
 78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
 79 | public var kotlinOptionalInt8Var: Int8? = nil
 80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
    |            `- note: var declared here
 81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
 82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:272:12: warning: reference to var 'kotlinOptionalInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 270 | public func testSupport_kotlinOptionalInt16Var(value: Int16?) -> Int16? {
 271 |     kotlinOptionalInt16Var = value
 272 |     return kotlinOptionalInt16Var
     |            `- warning: reference to var 'kotlinOptionalInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 273 | }
 274 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:80:12: note: var declared here
 78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
 79 | public var kotlinOptionalInt8Var: Int8? = nil
 80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
    |            `- note: var declared here
 81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
 82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:276:5: warning: reference to var 'kotlinOptionalInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 274 |
 275 | public func testSupport_kotlinOptionalInt32Var(value: Int32?) -> Int32? {
 276 |     kotlinOptionalInt32Var = value
     |     `- warning: reference to var 'kotlinOptionalInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 277 |     return kotlinOptionalInt32Var
 278 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:81:12: note: var declared here
 79 | public var kotlinOptionalInt8Var: Int8? = nil
 80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
 81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
    |            `- note: var declared here
 82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
 83 | public var kotlinOptionalIntVar: Int? = 6
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:277:12: warning: reference to var 'kotlinOptionalInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 275 | public func testSupport_kotlinOptionalInt32Var(value: Int32?) -> Int32? {
 276 |     kotlinOptionalInt32Var = value
 277 |     return kotlinOptionalInt32Var
     |            `- warning: reference to var 'kotlinOptionalInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 278 | }
 279 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:81:12: note: var declared here
 79 | public var kotlinOptionalInt8Var: Int8? = nil
 80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
 81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
    |            `- note: var declared here
 82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
 83 | public var kotlinOptionalIntVar: Int? = 6
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:281:5: warning: reference to var 'kotlinOptionalInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 279 |
 280 | public func testSupport_kotlinOptionalInt64Var(value: Int64?) -> Int64? {
 281 |     kotlinOptionalInt64Var = value
     |     `- warning: reference to var 'kotlinOptionalInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 282 |     return kotlinOptionalInt64Var
 283 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:82:12: note: var declared here
 80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
 81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
 82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
    |            `- note: var declared here
 83 | public var kotlinOptionalIntVar: Int? = 6
 84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:282:12: warning: reference to var 'kotlinOptionalInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 280 | public func testSupport_kotlinOptionalInt64Var(value: Int64?) -> Int64? {
 281 |     kotlinOptionalInt64Var = value
 282 |     return kotlinOptionalInt64Var
     |            `- warning: reference to var 'kotlinOptionalInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 283 | }
 284 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:82:12: note: var declared here
 80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
 81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
 82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
    |            `- note: var declared here
 83 | public var kotlinOptionalIntVar: Int? = 6
 84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:286:5: warning: reference to var 'kotlinOptionalIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 284 |
 285 | public func testSupport_kotlinOptionalIntVar(value: Int?) -> Int? {
 286 |     kotlinOptionalIntVar = value
     |     `- warning: reference to var 'kotlinOptionalIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 287 |     return kotlinOptionalIntVar
 288 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:83:12: note: var declared here
 81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
 82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
 83 | public var kotlinOptionalIntVar: Int? = 6
    |            `- note: var declared here
 84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
 85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:287:12: warning: reference to var 'kotlinOptionalIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 285 | public func testSupport_kotlinOptionalIntVar(value: Int?) -> Int? {
 286 |     kotlinOptionalIntVar = value
 287 |     return kotlinOptionalIntVar
     |            `- warning: reference to var 'kotlinOptionalIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 288 | }
 289 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:83:12: note: var declared here
 81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
 82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
 83 | public var kotlinOptionalIntVar: Int? = 6
    |            `- note: var declared here
 84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
 85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:291:5: warning: reference to var 'kotlinOptionalUnsignedInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 289 |
 290 | public func testSupport_kotlinOptionalUnsignedInt8Var(value: UInt8?) -> UInt8? {
 291 |     kotlinOptionalUnsignedInt8Var = value
     |     `- warning: reference to var 'kotlinOptionalUnsignedInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 292 |     return kotlinOptionalUnsignedInt8Var
 293 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:84:12: note: var declared here
 82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
 83 | public var kotlinOptionalIntVar: Int? = 6
 84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
    |            `- note: var declared here
 85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
 86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:292:12: warning: reference to var 'kotlinOptionalUnsignedInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 290 | public func testSupport_kotlinOptionalUnsignedInt8Var(value: UInt8?) -> UInt8? {
 291 |     kotlinOptionalUnsignedInt8Var = value
 292 |     return kotlinOptionalUnsignedInt8Var
     |            `- warning: reference to var 'kotlinOptionalUnsignedInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 293 | }
 294 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:84:12: note: var declared here
 82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
 83 | public var kotlinOptionalIntVar: Int? = 6
 84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
    |            `- note: var declared here
 85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
 86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:296:5: warning: reference to var 'kotlinOptionalUnsignedInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 294 |
 295 | public func testSupport_kotlinOptionalUnsignedInt16Var(value: UInt16?) -> UInt16? {
 296 |     kotlinOptionalUnsignedInt16Var = value
     |     `- warning: reference to var 'kotlinOptionalUnsignedInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 297 |     return kotlinOptionalUnsignedInt16Var
 298 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:85:12: note: var declared here
 83 | public var kotlinOptionalIntVar: Int? = 6
 84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
 85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
    |            `- note: var declared here
 86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
 87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:297:12: warning: reference to var 'kotlinOptionalUnsignedInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 295 | public func testSupport_kotlinOptionalUnsignedInt16Var(value: UInt16?) -> UInt16? {
 296 |     kotlinOptionalUnsignedInt16Var = value
 297 |     return kotlinOptionalUnsignedInt16Var
     |            `- warning: reference to var 'kotlinOptionalUnsignedInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 298 | }
 299 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:85:12: note: var declared here
 83 | public var kotlinOptionalIntVar: Int? = 6
 84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
 85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
    |            `- note: var declared here
 86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
 87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:301:5: warning: reference to var 'kotlinOptionalUnsignedInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 299 |
 300 | public func testSupport_kotlinOptionalUnsignedInt32Var(value: UInt32?) -> UInt32? {
 301 |     kotlinOptionalUnsignedInt32Var = value
     |     `- warning: reference to var 'kotlinOptionalUnsignedInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 302 |     return kotlinOptionalUnsignedInt32Var
 303 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:86:12: note: var declared here
 84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
 85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
 86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
    |            `- note: var declared here
 87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
 88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:302:12: warning: reference to var 'kotlinOptionalUnsignedInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 300 | public func testSupport_kotlinOptionalUnsignedInt32Var(value: UInt32?) -> UInt32? {
 301 |     kotlinOptionalUnsignedInt32Var = value
 302 |     return kotlinOptionalUnsignedInt32Var
     |            `- warning: reference to var 'kotlinOptionalUnsignedInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 303 | }
 304 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:86:12: note: var declared here
 84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
 85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
 86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
    |            `- note: var declared here
 87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
 88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:306:5: warning: reference to var 'kotlinOptionalUnsignedInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 304 |
 305 | public func testSupport_kotlinOptionalUnsignedInt64Var(value: UInt64?) -> UInt64? {
 306 |     kotlinOptionalUnsignedInt64Var = value
     |     `- warning: reference to var 'kotlinOptionalUnsignedInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 307 |     return kotlinOptionalUnsignedInt64Var
 308 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:87:12: note: var declared here
 85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
 86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
 87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
    |            `- note: var declared here
 88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
 89 | public var kotlinOptionalStringVar: String? = "s"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:307:12: warning: reference to var 'kotlinOptionalUnsignedInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 305 | public func testSupport_kotlinOptionalUnsignedInt64Var(value: UInt64?) -> UInt64? {
 306 |     kotlinOptionalUnsignedInt64Var = value
 307 |     return kotlinOptionalUnsignedInt64Var
     |            `- warning: reference to var 'kotlinOptionalUnsignedInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 308 | }
 309 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:87:12: note: var declared here
 85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
 86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
 87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
    |            `- note: var declared here
 88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
 89 | public var kotlinOptionalStringVar: String? = "s"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:311:5: warning: reference to var 'kotlinOptionalUnsignedIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 309 |
 310 | public func testSupport_kotlinOptionalUnsignedIntVar(value: UInt?) -> UInt? {
 311 |     kotlinOptionalUnsignedIntVar = value
     |     `- warning: reference to var 'kotlinOptionalUnsignedIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 312 |     return kotlinOptionalUnsignedIntVar
 313 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:88:12: note: var declared here
 86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
 87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
 88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
    |            `- note: var declared here
 89 | public var kotlinOptionalStringVar: String? = "s"
 90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:312:12: warning: reference to var 'kotlinOptionalUnsignedIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 310 | public func testSupport_kotlinOptionalUnsignedIntVar(value: UInt?) -> UInt? {
 311 |     kotlinOptionalUnsignedIntVar = value
 312 |     return kotlinOptionalUnsignedIntVar
     |            `- warning: reference to var 'kotlinOptionalUnsignedIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 313 | }
 314 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:88:12: note: var declared here
 86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
 87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
 88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
    |            `- note: var declared here
 89 | public var kotlinOptionalStringVar: String? = "s"
 90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:316:5: warning: reference to var 'kotlinOptionalStringVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 314 |
 315 | public func testSupport_kotlinOptionalStringVar(value: String?) -> String? {
 316 |     kotlinOptionalStringVar = value
     |     `- warning: reference to var 'kotlinOptionalStringVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 317 |     return kotlinOptionalStringVar
 318 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:89:12: note: var declared here
 87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
 88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
 89 | public var kotlinOptionalStringVar: String? = "s"
    |            `- note: var declared here
 90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
 91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:317:12: warning: reference to var 'kotlinOptionalStringVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 315 | public func testSupport_kotlinOptionalStringVar(value: String?) -> String? {
 316 |     kotlinOptionalStringVar = value
 317 |     return kotlinOptionalStringVar
     |            `- warning: reference to var 'kotlinOptionalStringVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 318 | }
 319 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:89:12: note: var declared here
 87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
 88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
 89 | public var kotlinOptionalStringVar: String? = "s"
    |            `- note: var declared here
 90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
 91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:324:9: warning: reference to var 'kotlinOptionalClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 322 |         let helper = KotlinHelperClass()
 323 |         helper.stringVar = value
 324 |         kotlinOptionalClassVar = helper
     |         `- warning: reference to var 'kotlinOptionalClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 325 |     } else {
 326 |         kotlinOptionalClassVar = nil
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:90:12: note: var declared here
 88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
 89 | public var kotlinOptionalStringVar: String? = "s"
 90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
    |            `- note: var declared here
 91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
 92 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:326:9: warning: reference to var 'kotlinOptionalClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 324 |         kotlinOptionalClassVar = helper
 325 |     } else {
 326 |         kotlinOptionalClassVar = nil
     |         `- warning: reference to var 'kotlinOptionalClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 327 |     }
 328 |     return kotlinOptionalClassVar?.stringVar
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:90:12: note: var declared here
 88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
 89 | public var kotlinOptionalStringVar: String? = "s"
 90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
    |            `- note: var declared here
 91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
 92 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:328:12: warning: reference to var 'kotlinOptionalClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 326 |         kotlinOptionalClassVar = nil
 327 |     }
 328 |     return kotlinOptionalClassVar?.stringVar
     |            `- warning: reference to var 'kotlinOptionalClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 329 | }
 330 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:90:12: note: var declared here
 88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
 89 | public var kotlinOptionalStringVar: String? = "s"
 90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
    |            `- note: var declared here
 91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
 92 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:335:9: warning: reference to var 'kotlinOptionalSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 333 |         let helper = SwiftHelperClass()
 334 |         helper.stringVar = value
 335 |         kotlinOptionalSwiftClassVar = helper
     |         `- warning: reference to var 'kotlinOptionalSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 336 |     } else {
 337 |         kotlinOptionalSwiftClassVar = nil
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:91:12: note: var declared here
 89 | public var kotlinOptionalStringVar: String? = "s"
 90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
 91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
    |            `- note: var declared here
 92 |
 93 | // MARK: Global computed vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:337:9: warning: reference to var 'kotlinOptionalSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 335 |         kotlinOptionalSwiftClassVar = helper
 336 |     } else {
 337 |         kotlinOptionalSwiftClassVar = nil
     |         `- warning: reference to var 'kotlinOptionalSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 338 |     }
 339 |     return kotlinOptionalSwiftClassVar?.stringVar
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:91:12: note: var declared here
 89 | public var kotlinOptionalStringVar: String? = "s"
 90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
 91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
    |            `- note: var declared here
 92 |
 93 | // MARK: Global computed vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:339:12: warning: reference to var 'kotlinOptionalSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 337 |         kotlinOptionalSwiftClassVar = nil
 338 |     }
 339 |     return kotlinOptionalSwiftClassVar?.stringVar
     |            `- warning: reference to var 'kotlinOptionalSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 340 | }
 341 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:91:12: note: var declared here
 89 | public var kotlinOptionalStringVar: String? = "s"
 90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
 91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
    |            `- note: var declared here
 92 |
 93 | // MARK: Global computed vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:396:17: warning: reference to class property 'staticIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 394 |
 395 | public func testSupport_kotlinClassMemberStaticVar(value: Int) -> Int {
 396 |     KotlinClass.staticIntVar = 99
     |                 `- warning: reference to class property 'staticIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 397 |     return KotlinClass.staticIntVar
 398 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:126:23: note: class property declared here
124 | public class KotlinClass {
125 |     public static let staticIntConstant = 1
126 |     public static var staticIntVar = 1
    |                       `- note: class property declared here
127 |     public static func staticFunc(string: String) -> String {
128 |         return "kotlin" + string
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:397:24: warning: reference to class property 'staticIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 395 | public func testSupport_kotlinClassMemberStaticVar(value: Int) -> Int {
 396 |     KotlinClass.staticIntVar = 99
 397 |     return KotlinClass.staticIntVar
     |                        `- warning: reference to class property 'staticIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 398 | }
 399 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:126:23: note: class property declared here
124 | public class KotlinClass {
125 |     public static let staticIntConstant = 1
126 |     public static var staticIntVar = 1
    |                       `- note: class property declared here
127 |     public static func staticFunc(string: String) -> String {
128 |         return "kotlin" + string
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:438:5: warning: reference to var 'kotlinBaseClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 436 |     }
 437 |
 438 |     kotlinBaseClassVar = sub
     |     `- warning: reference to var 'kotlinBaseClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 439 |     kotlinBaseClassVar.intVar = 101
 440 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:67:12: note: var declared here
 65 | public var kotlinNSNumberVar = NSNumber(value: 100)
 66 | public var kotlinClassVar = KotlinHelperClass()
 67 | public var kotlinBaseClassVar = KotlinClass()
    |            `- note: var declared here
 68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
 69 | public var kotlinSwiftClassVar = SwiftHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:439:5: warning: reference to var 'kotlinBaseClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 437 |
 438 |     kotlinBaseClassVar = sub
 439 |     kotlinBaseClassVar.intVar = 101
     |     `- warning: reference to var 'kotlinBaseClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 440 |
 441 |     let sub2 = kotlinBaseClassVar as? KotlinSubclass
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:67:12: note: var declared here
 65 | public var kotlinNSNumberVar = NSNumber(value: 100)
 66 | public var kotlinClassVar = KotlinHelperClass()
 67 | public var kotlinBaseClassVar = KotlinClass()
    |            `- note: var declared here
 68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
 69 | public var kotlinSwiftClassVar = SwiftHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:441:16: warning: reference to var 'kotlinBaseClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 439 |     kotlinBaseClassVar.intVar = 101
 440 |
 441 |     let sub2 = kotlinBaseClassVar as? KotlinSubclass
     |                `- warning: reference to var 'kotlinBaseClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 442 |     guard let sub2 else {
 443 |         return "sub2 != nil"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:67:12: note: var declared here
 65 | public var kotlinNSNumberVar = NSNumber(value: 100)
 66 | public var kotlinClassVar = KotlinHelperClass()
 67 | public var kotlinBaseClassVar = KotlinClass()
    |            `- note: var declared here
 68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
 69 | public var kotlinSwiftClassVar = SwiftHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:794:5: warning: reference to var 'kotlinClosure0Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 792 |
 793 | public func testSupport_kotlinClosure0Var() {
 794 |     kotlinClosure0Var()
     |     `- warning: reference to var 'kotlinClosure0Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 795 |     kotlinClosure0Var = { print("reassigned") }
 796 |     kotlinClosure0Var()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:378:12: note: var declared here
376 | // MARK: Closures
377 |
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
    |            `- note: var declared here
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:795:5: warning: reference to var 'kotlinClosure0Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 793 | public func testSupport_kotlinClosure0Var() {
 794 |     kotlinClosure0Var()
 795 |     kotlinClosure0Var = { print("reassigned") }
     |     `- warning: reference to var 'kotlinClosure0Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 796 |     kotlinClosure0Var()
 797 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:378:12: note: var declared here
376 | // MARK: Closures
377 |
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
    |            `- note: var declared here
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:796:5: warning: reference to var 'kotlinClosure0Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 794 |     kotlinClosure0Var()
 795 |     kotlinClosure0Var = { print("reassigned") }
 796 |     kotlinClosure0Var()
     |     `- warning: reference to var 'kotlinClosure0Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 797 | }
 798 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:378:12: note: var declared here
376 | // MARK: Closures
377 |
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
    |            `- note: var declared here
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:800:14: warning: reference to var 'kotlinClosure1Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 798 |
 799 | public func testSupport_kotlinClosure1Var(value: Int) -> String {
 800 |     let s1 = kotlinClosure1Var(value)
     |              `- warning: reference to var 'kotlinClosure1Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 801 |     kotlinClosure1Var = { i in "value = \(i)" }
 802 |     let s2 = kotlinClosure1Var(value)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:379:12: note: var declared here
377 |
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
    |            `- note: var declared here
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:801:5: warning: reference to var 'kotlinClosure1Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 799 | public func testSupport_kotlinClosure1Var(value: Int) -> String {
 800 |     let s1 = kotlinClosure1Var(value)
 801 |     kotlinClosure1Var = { i in "value = \(i)" }
     |     `- warning: reference to var 'kotlinClosure1Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 802 |     let s2 = kotlinClosure1Var(value)
 803 |     return s1 == s2 ? s1 : s1 + "/" + s2
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:379:12: note: var declared here
377 |
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
    |            `- note: var declared here
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:802:14: warning: reference to var 'kotlinClosure1Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 800 |     let s1 = kotlinClosure1Var(value)
 801 |     kotlinClosure1Var = { i in "value = \(i)" }
 802 |     let s2 = kotlinClosure1Var(value)
     |              `- warning: reference to var 'kotlinClosure1Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 803 |     return s1 == s2 ? s1 : s1 + "/" + s2
 804 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:379:12: note: var declared here
377 |
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
    |            `- note: var declared here
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:807:14: warning: reference to var 'kotlinClosure1PrimitivesVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 805 |
 806 | public func testSupport_kotlinClosure1PrimitivesVar(value: Int64) -> Int {
 807 |     let i1 = kotlinClosure1PrimitivesVar(value)
     |              `- warning: reference to var 'kotlinClosure1PrimitivesVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 808 |     kotlinClosure1PrimitivesVar = { l in Int(l / 1000) }
 809 |     let i2 = kotlinClosure1PrimitivesVar(value)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:380:12: note: var declared here
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
    |            `- note: var declared here
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
382 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:808:5: warning: reference to var 'kotlinClosure1PrimitivesVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 806 | public func testSupport_kotlinClosure1PrimitivesVar(value: Int64) -> Int {
 807 |     let i1 = kotlinClosure1PrimitivesVar(value)
 808 |     kotlinClosure1PrimitivesVar = { l in Int(l / 1000) }
     |     `- warning: reference to var 'kotlinClosure1PrimitivesVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 809 |     let i2 = kotlinClosure1PrimitivesVar(value)
 810 |     return i1 == i2 ? i1 : i1 * 10000 + i2
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:380:12: note: var declared here
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
    |            `- note: var declared here
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
382 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:809:14: warning: reference to var 'kotlinClosure1PrimitivesVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 807 |     let i1 = kotlinClosure1PrimitivesVar(value)
 808 |     kotlinClosure1PrimitivesVar = { l in Int(l / 1000) }
 809 |     let i2 = kotlinClosure1PrimitivesVar(value)
     |              `- warning: reference to var 'kotlinClosure1PrimitivesVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 810 |     return i1 == i2 ? i1 : i1 * 10000 + i2
 811 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:380:12: note: var declared here
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
    |            `- note: var declared here
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
382 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:814:14: warning: reference to var 'kotlinClosure1OptionalsVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 812 |
 813 | public func testSupport_kotlinClosure1OptionalsVar(value: String?) -> Int? {
 814 |     let i1 = kotlinClosure1OptionalsVar(value)
     |              `- warning: reference to var 'kotlinClosure1OptionalsVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 815 |     kotlinClosure1OptionalsVar = { s in s?.count }
 816 |     let i2 = kotlinClosure1OptionalsVar(value)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:381:12: note: var declared here
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
    |            `- note: var declared here
382 |
383 | // MARK: Containers
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:815:5: warning: reference to var 'kotlinClosure1OptionalsVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 813 | public func testSupport_kotlinClosure1OptionalsVar(value: String?) -> Int? {
 814 |     let i1 = kotlinClosure1OptionalsVar(value)
 815 |     kotlinClosure1OptionalsVar = { s in s?.count }
     |     `- warning: reference to var 'kotlinClosure1OptionalsVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 816 |     let i2 = kotlinClosure1OptionalsVar(value)
 817 |     return i1 == i2 ? i1 : (i1 ?? 0) * 10000 + (i2 ?? 0)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:381:12: note: var declared here
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
    |            `- note: var declared here
382 |
383 | // MARK: Containers
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:816:14: warning: reference to var 'kotlinClosure1OptionalsVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 814 |     let i1 = kotlinClosure1OptionalsVar(value)
 815 |     kotlinClosure1OptionalsVar = { s in s?.count }
 816 |     let i2 = kotlinClosure1OptionalsVar(value)
     |              `- warning: reference to var 'kotlinClosure1OptionalsVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 817 |     return i1 == i2 ? i1 : (i1 ?? 0) * 10000 + (i2 ?? 0)
 818 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:381:12: note: var declared here
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
    |            `- note: var declared here
382 |
383 | // MARK: Containers
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:825:5: warning: reference to var 'kotlinIntArrayVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 823 |
 824 | public func testSupport_kotlinIntArrayVar(value: [Int]) -> [Int] {
 825 |     kotlinIntArrayVar = value
     |     `- warning: reference to var 'kotlinIntArrayVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 826 |     return kotlinIntArrayVar
 827 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:385:12: note: var declared here
383 | // MARK: Containers
384 |
385 | public var kotlinIntArrayVar = [1, 2, 3]
    |            `- note: var declared here
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:826:12: warning: reference to var 'kotlinIntArrayVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 824 | public func testSupport_kotlinIntArrayVar(value: [Int]) -> [Int] {
 825 |     kotlinIntArrayVar = value
 826 |     return kotlinIntArrayVar
     |            `- warning: reference to var 'kotlinIntArrayVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 827 | }
 828 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:385:12: note: var declared here
383 | // MARK: Containers
384 |
385 | public var kotlinIntArrayVar = [1, 2, 3]
    |            `- note: var declared here
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:830:5: warning: reference to var 'kotlinStringSetVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 828 |
 829 | public func testSupport_kotlinStringSetVar(value: Set<String>) -> Set<String> {
 830 |     kotlinStringSetVar = value
     |     `- warning: reference to var 'kotlinStringSetVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 831 |     return kotlinStringSetVar
 832 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:386:12: note: var declared here
384 |
385 | public var kotlinIntArrayVar = [1, 2, 3]
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
    |            `- note: var declared here
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:831:12: warning: reference to var 'kotlinStringSetVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 829 | public func testSupport_kotlinStringSetVar(value: Set<String>) -> Set<String> {
 830 |     kotlinStringSetVar = value
 831 |     return kotlinStringSetVar
     |            `- warning: reference to var 'kotlinStringSetVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 832 | }
 833 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:386:12: note: var declared here
384 |
385 | public var kotlinIntArrayVar = [1, 2, 3]
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
    |            `- note: var declared here
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:835:5: warning: reference to var 'kotlinIntStringDictionaryVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 833 |
 834 | public func testSupport_kotlinIntStringDictionaryVar(value: [Int: String]) -> [Int: String] {
 835 |     kotlinIntStringDictionaryVar = value
     |     `- warning: reference to var 'kotlinIntStringDictionaryVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 836 |     return kotlinIntStringDictionaryVar
 837 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:387:12: note: var declared here
385 | public var kotlinIntArrayVar = [1, 2, 3]
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
    |            `- note: var declared here
388 | public var kotlinIntStringTupleVar = (1, "s")
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:836:12: warning: reference to var 'kotlinIntStringDictionaryVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 834 | public func testSupport_kotlinIntStringDictionaryVar(value: [Int: String]) -> [Int: String] {
 835 |     kotlinIntStringDictionaryVar = value
 836 |     return kotlinIntStringDictionaryVar
     |            `- warning: reference to var 'kotlinIntStringDictionaryVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 837 | }
 838 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:387:12: note: var declared here
385 | public var kotlinIntArrayVar = [1, 2, 3]
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
    |            `- note: var declared here
388 | public var kotlinIntStringTupleVar = (1, "s")
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:840:5: warning: reference to var 'kotlinIntStringTupleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 838 |
 839 | public func testSupport_kotlinIntStringTupleVar(value: (Int, String)) -> (Int, String) {
 840 |     kotlinIntStringTupleVar = value
     |     `- warning: reference to var 'kotlinIntStringTupleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 841 |     return kotlinIntStringTupleVar
 842 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:388:12: note: var declared here
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
    |            `- note: var declared here
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
390 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:841:12: warning: reference to var 'kotlinIntStringTupleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 839 | public func testSupport_kotlinIntStringTupleVar(value: (Int, String)) -> (Int, String) {
 840 |     kotlinIntStringTupleVar = value
 841 |     return kotlinIntStringTupleVar
     |            `- warning: reference to var 'kotlinIntStringTupleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 842 | }
 843 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:388:12: note: var declared here
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
    |            `- note: var declared here
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
390 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:846:9: warning: reference to var 'kotlinIntErrorResult' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 844 | public func testSupport_kotlinIntErrorResultVar(value: Int?) -> Int? {
 845 |     if let value {
 846 |         kotlinIntErrorResult = .success(value)
     |         `- warning: reference to var 'kotlinIntErrorResult' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 847 |     } else {
 848 |         kotlinIntErrorResult = .failure(KotlinError())
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:389:12: note: var declared here
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
    |            `- note: var declared here
390 |
391 | // MARK: Functions
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:848:9: warning: reference to var 'kotlinIntErrorResult' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 846 |         kotlinIntErrorResult = .success(value)
 847 |     } else {
 848 |         kotlinIntErrorResult = .failure(KotlinError())
     |         `- warning: reference to var 'kotlinIntErrorResult' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 849 |     }
 850 |     switch kotlinIntErrorResult {
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:389:12: note: var declared here
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
    |            `- note: var declared here
390 |
391 | // MARK: Functions
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:850:12: warning: reference to var 'kotlinIntErrorResult' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 848 |         kotlinIntErrorResult = .failure(KotlinError())
 849 |     }
 850 |     switch kotlinIntErrorResult {
     |            `- warning: reference to var 'kotlinIntErrorResult' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 851 |     case .success(let ret):
 852 |         return ret
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:389:12: note: var declared here
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
    |            `- note: var declared here
390 |
391 | // MARK: Functions
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:538:16: warning: will never be executed
 535 |         return "s1.intVar == 2"
 536 |     }
 537 |     guard s2.intVar == 3 else {
     |                     `- note: condition always evaluates to true
 538 |         return "s2.intVar == 3"
     |                `- warning: will never be executed
 539 |     }
 540 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:558:16: warning: will never be executed
 555 |
 556 |     s1.intVar = 3
 557 |     guard s1.intVar == 3 else {
     |                     `- note: condition always evaluates to true
 558 |         return "s1.intVar == 3"
     |                `- warning: will never be executed
 559 |     }
 560 |     guard obj.swiftStructVar.intVar == 2 else {
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:568:16: warning: will never be executed
 565 |     var s2 = obj.swiftStructVar
 566 |     s2.intVar = 100
 567 |     guard s1.intVar == 3 else {
     |                     `- note: condition always evaluates to true
 568 |         return "s1.intVar == 3"
     |                `- warning: will never be executed
 569 |     }
 570 |     guard s2.intVar == 100 else {
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:571:16: warning: will never be executed
 568 |         return "s1.intVar == 3"
 569 |     }
 570 |     guard s2.intVar == 100 else {
     |                     `- note: condition always evaluates to true
 571 |         return "s2.intVar == 100"
     |                `- warning: will never be executed
 572 |     }
 573 |     guard obj.swiftStructVar.intVar == 99 else {
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:586:16: warning: will never be executed
 583 |
 584 |     s1.intVar = 3
 585 |     guard s1.intVar == 3 else {
     |                     `- note: condition always evaluates to true
 586 |         return "s1.intVar == 3"
     |                `- warning: will never be executed
 587 |     }
 588 |     guard obj.kotlinStructVar.intVar == 2 else {
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:596:16: warning: will never be executed
 593 |     var s2 = obj.kotlinStructVar
 594 |     s2.intVar = 100
 595 |     guard s1.intVar == 3 else {
     |                     `- note: condition always evaluates to true
 596 |         return "s1.intVar == 3"
     |                `- warning: will never be executed
 597 |     }
 598 |     guard s2.intVar == 100 else {
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:599:16: warning: will never be executed
 596 |         return "s1.intVar == 3"
 597 |     }
 598 |     guard s2.intVar == 100 else {
     |                     `- note: condition always evaluates to true
 599 |         return "s2.intVar == 100"
     |                `- warning: will never be executed
 600 |     }
 601 |     guard obj.kotlinStructVar.intVar == 99 else {
[179/181] Emitting module SkipBridgeToSwiftSamplesTestsSupport
[179/181] Write Objects.LinkFileList
[180/181] Linking libSkipBridgeToSwiftSamplesTestsSupport.dylib
Build complete! (18.59s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "skip",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.6.8",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://source.skip.tools/skip.git"
    },
    {
      "identity" : "skip-lib",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.3.7",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://source.skip.tools/skip-lib.git"
    },
    {
      "identity" : "skip-foundation",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.3.9",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://source.skip.tools/skip-foundation.git"
    },
    {
      "identity" : "swift-jni",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.3.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://source.skip.tools/swift-jni.git"
    }
  ],
  "manifest_display_name" : "skip-bridge",
  "name" : "skip-bridge",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "SkipBridge",
      "targets" : [
        "SkipBridge"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "SkipBridgeToKotlinSamples",
      "targets" : [
        "SkipBridgeToKotlinSamples"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "SkipBridgeToKotlinSamplesHelpers",
      "targets" : [
        "SkipBridgeToKotlinSamplesHelpers"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "SkipBridgeToKotlinCompatSamples",
      "targets" : [
        "SkipBridgeToKotlinCompatSamples"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "SkipBridgeToSwiftSamples",
      "targets" : [
        "SkipBridgeToSwiftSamples"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "SkipBridgeToSwiftSamplesHelpers",
      "targets" : [
        "SkipBridgeToSwiftSamplesHelpers"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    },
    {
      "name" : "SkipBridgeToSwiftSamplesTestsSupport",
      "targets" : [
        "SkipBridgeToSwiftSamplesTestsSupport"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SkipBridgeToSwiftSamplesTestsSupportTests",
      "module_type" : "SwiftTarget",
      "name" : "SkipBridgeToSwiftSamplesTestsSupportTests",
      "path" : "Tests/SkipBridgeToSwiftSamplesTestsSupportTests",
      "product_dependencies" : [
        "SkipTest",
        "skipstone"
      ],
      "sources" : [
        "BridgeToSwiftSamplesTests.swift",
        "XCSkipTests.swift"
      ],
      "target_dependencies" : [
        "SkipBridgeToSwiftSamplesTestsSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SkipBridgeToSwiftSamplesTestsSupport",
      "module_type" : "SwiftTarget",
      "name" : "SkipBridgeToSwiftSamplesTestsSupport",
      "path" : "Sources/SkipBridgeToSwiftSamplesTestsSupport",
      "product_dependencies" : [
        "skipstone"
      ],
      "product_memberships" : [
        "SkipBridgeToSwiftSamplesTestsSupport"
      ],
      "sources" : [
        "TestsSupport.swift"
      ],
      "target_dependencies" : [
        "SkipBridgeToSwiftSamples"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SkipBridgeToSwiftSamplesHelpers",
      "module_type" : "SwiftTarget",
      "name" : "SkipBridgeToSwiftSamplesHelpers",
      "path" : "Sources/SkipBridgeToSwiftSamplesHelpers",
      "product_dependencies" : [
        "SkipFoundation",
        "skipstone"
      ],
      "product_memberships" : [
        "SkipBridgeToSwiftSamples",
        "SkipBridgeToSwiftSamplesHelpers",
        "SkipBridgeToSwiftSamplesTestsSupport"
      ],
      "sources" : [
        "Helpers.swift"
      ],
      "target_dependencies" : [
        "SkipBridge"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SkipBridgeToSwiftSamples",
      "module_type" : "SwiftTarget",
      "name" : "SkipBridgeToSwiftSamples",
      "path" : "Sources/SkipBridgeToSwiftSamples",
      "product_dependencies" : [
        "skipstone"
      ],
      "product_memberships" : [
        "SkipBridgeToSwiftSamples",
        "SkipBridgeToSwiftSamplesTestsSupport"
      ],
      "sources" : [
        "Samples.swift"
      ],
      "target_dependencies" : [
        "SkipBridgeToSwiftSamplesHelpers"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SkipBridgeToKotlinSamplesTests",
      "module_type" : "SwiftTarget",
      "name" : "SkipBridgeToKotlinSamplesTests",
      "path" : "Tests/SkipBridgeToKotlinSamplesTests",
      "product_dependencies" : [
        "SkipTest",
        "skipstone"
      ],
      "sources" : [
        "BridgeToKotlinSamplesTests.swift",
        "XCSkipTests.swift"
      ],
      "target_dependencies" : [
        "SkipBridgeToKotlinSamples"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SkipBridgeToKotlinSamplesHelpers",
      "module_type" : "SwiftTarget",
      "name" : "SkipBridgeToKotlinSamplesHelpers",
      "path" : "Sources/SkipBridgeToKotlinSamplesHelpers",
      "product_dependencies" : [
        "SkipFoundation",
        "skipstone"
      ],
      "product_memberships" : [
        "SkipBridgeToKotlinSamples",
        "SkipBridgeToKotlinSamplesHelpers"
      ],
      "sources" : [
        "Helpers.swift"
      ],
      "target_dependencies" : [
        "SkipBridge"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SkipBridgeToKotlinSamples",
      "module_type" : "SwiftTarget",
      "name" : "SkipBridgeToKotlinSamples",
      "path" : "Sources/SkipBridgeToKotlinSamples",
      "product_dependencies" : [
        "skipstone"
      ],
      "product_memberships" : [
        "SkipBridgeToKotlinSamples"
      ],
      "sources" : [
        "Samples.swift",
        "TestsSupport.swift"
      ],
      "target_dependencies" : [
        "SkipBridgeToKotlinSamplesHelpers"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SkipBridgeToKotlinCompatSamplesTests",
      "module_type" : "SwiftTarget",
      "name" : "SkipBridgeToKotlinCompatSamplesTests",
      "path" : "Tests/SkipBridgeToKotlinCompatSamplesTests",
      "product_dependencies" : [
        "SkipTest",
        "skipstone"
      ],
      "sources" : [
        "BridgeToKotlinCompatSamplesTests.swift",
        "XCSkipTests.swift"
      ],
      "target_dependencies" : [
        "SkipBridgeToKotlinCompatSamples"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SkipBridgeToKotlinCompatSamples",
      "module_type" : "SwiftTarget",
      "name" : "SkipBridgeToKotlinCompatSamples",
      "path" : "Sources/SkipBridgeToKotlinCompatSamples",
      "product_dependencies" : [
        "SkipFoundation",
        "skipstone"
      ],
      "product_memberships" : [
        "SkipBridgeToKotlinCompatSamples"
      ],
      "sources" : [
        "Samples.swift"
      ],
      "target_dependencies" : [
        "SkipBridge"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SkipBridge",
      "module_type" : "SwiftTarget",
      "name" : "SkipBridge",
      "path" : "Sources/SkipBridge",
      "product_dependencies" : [
        "SwiftJNI",
        "SkipLib",
        "skipstone"
      ],
      "product_memberships" : [
        "SkipBridge",
        "SkipBridgeToKotlinSamples",
        "SkipBridgeToKotlinSamplesHelpers",
        "SkipBridgeToKotlinCompatSamples",
        "SkipBridgeToSwiftSamples",
        "SkipBridgeToSwiftSamplesHelpers",
        "SkipBridgeToSwiftSamplesTestsSupport"
      ],
      "sources" : [
        "AnyDynamicObject.swift",
        "BridgeSupport.swift",
        "BridgedTypes.swift",
        "Closures.swift",
        "SwiftEquatable.swift",
        "SwiftHashable.swift",
        "System.swift",
        "Tuples.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.