Build Information
Successful build of skip-bridge, reference 0.14.0 (c28613
), with Swift 6.1 for macOS (SPM) on 24 Apr 2025 21:35:32 UTC.
Swift 6 data race errors: 83
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
357 |
358 | // MARK: Containers
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:360:12: warning: var 'kotlinIntArrayVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
358 | // MARK: Containers
359 |
360 | public var kotlinIntArrayVar = [1, 2, 3]
| |- warning: var 'kotlinIntArrayVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinIntArrayVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinIntArrayVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
361 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
362 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:361:12: warning: var 'kotlinStringSetVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
359 |
360 | public var kotlinIntArrayVar = [1, 2, 3]
361 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
| |- warning: var 'kotlinStringSetVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinStringSetVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinStringSetVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
362 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
363 | public var kotlinIntStringTupleVar = (1, "s")
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:362:12: warning: var 'kotlinIntStringDictionaryVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
360 | public var kotlinIntArrayVar = [1, 2, 3]
361 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
362 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
| |- warning: var 'kotlinIntStringDictionaryVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinIntStringDictionaryVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinIntStringDictionaryVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
363 | public var kotlinIntStringTupleVar = (1, "s")
364 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:363:12: warning: var 'kotlinIntStringTupleVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
361 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
362 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
363 | public var kotlinIntStringTupleVar = (1, "s")
| |- warning: var 'kotlinIntStringTupleVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinIntStringTupleVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinIntStringTupleVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
364 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
365 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:364:12: warning: var 'kotlinIntErrorResult' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
362 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
363 | public var kotlinIntStringTupleVar = (1, "s")
364 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
| |- warning: var 'kotlinIntErrorResult' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinIntErrorResult' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinIntErrorResult' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
365 |
366 | // MARK: Functions
[168/178] Write Objects.LinkFileList
[170/178] Compiling SkipBridgeToKotlinSamples resource_bundle_accessor.swift
[171/178] Compiling SkipBridgeToKotlinSamples TestsSupport.swift
[172/178] Compiling SkipBridgeToKotlinSamples Samples.swift
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:20: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
18 | // TODO: Unsigned values
19 | public let swiftStringConstant = "s"
20 | 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
21 | public let swiftKotlinClassConstant = KotlinHelperClass()
22 |
:
148 | }
149 |
150 | public final class SwiftHelperClass: SwiftProtocol, SwiftGenericProtocol, Comparable, Identifiable {
| `- note: class 'SwiftHelperClass' does not conform to the 'Sendable' protocol
151 | public var id: String {
152 | return stringVar
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:21: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
19 | public let swiftStringConstant = "s"
20 | public let swiftClassConstant = SwiftHelperClass()
21 | 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
22 |
23 | // 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
:
19 | public let swiftStringConstant = "s"
20 | public let swiftClassConstant = SwiftHelperClass()
21 | 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
22 |
23 | // MARK: Global optional constants
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:36: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
34 | // TODO: Unsigned values
35 | public let swiftOptionalStringConstant: String? = "s"
36 | 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
37 | public let swiftOptionalKotlinClassConstant: KotlinHelperClass? = KotlinHelperClass()
38 |
:
148 | }
149 |
150 | public final class SwiftHelperClass: SwiftProtocol, SwiftGenericProtocol, Comparable, Identifiable {
| `- note: class 'SwiftHelperClass' does not conform to the 'Sendable' protocol
151 | public var id: String {
152 | return stringVar
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:37: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
35 | public let swiftOptionalStringConstant: String? = "s"
36 | public let swiftOptionalClassConstant: SwiftHelperClass? = SwiftHelperClass()
37 | 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
38 |
39 | // 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:41: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
39 | // MARK: Global vars
40 |
41 | 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
42 | // TODO: Char
43 | public var swiftDoubleVar = 1.0
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:43: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
41 | public var swiftBoolVar = true
42 | // TODO: Char
43 | 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
44 | public var swiftFloatVar: Float = 2.0
45 | public var swiftInt8Var: Int8 = 3
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:44: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
42 | // TODO: Char
43 | public var swiftDoubleVar = 1.0
44 | 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
45 | public var swiftInt8Var: Int8 = 3
46 | public var swiftInt16Var: Int16 = 4
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:45: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
43 | public var swiftDoubleVar = 1.0
44 | public var swiftFloatVar: Float = 2.0
45 | 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
46 | public var swiftInt16Var: Int16 = 4
47 | public var swiftInt32Var: Int32 = 5
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:46: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
44 | public var swiftFloatVar: Float = 2.0
45 | public var swiftInt8Var: Int8 = 3
46 | 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
47 | public var swiftInt32Var: Int32 = 5
48 | public var swiftInt64Var: Int64 = 6
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:47: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
45 | public var swiftInt8Var: Int8 = 3
46 | public var swiftInt16Var: Int16 = 4
47 | 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
48 | public var swiftInt64Var: Int64 = 6
49 | public var swiftIntVar = 7
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:48: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
46 | public var swiftInt16Var: Int16 = 4
47 | public var swiftInt32Var: Int32 = 5
48 | 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
49 | public var swiftIntVar = 7
50 | // TODO: Unsigned values
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:49: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
47 | public var swiftInt32Var: Int32 = 5
48 | public var swiftInt64Var: Int64 = 6
49 | 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
50 | // TODO: Unsigned values
51 | public var swiftStringVar = "s"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:51: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
49 | public var swiftIntVar = 7
50 | // TODO: Unsigned values
51 | 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
52 | public var swiftClassVar = SwiftHelperClass()
53 | public var swiftBaseClassVar = SwiftClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:52: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
50 | // TODO: Unsigned values
51 | public var swiftStringVar = "s"
52 | 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
53 | public var swiftBaseClassVar = SwiftClass()
54 | public var swiftInnerClassVar = SwiftHelperClass.Inner()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:53: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
51 | public var swiftStringVar = "s"
52 | public var swiftClassVar = SwiftHelperClass()
53 | 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
54 | public var swiftInnerClassVar = SwiftHelperClass.Inner()
55 | public var swiftKotlinClassVar = KotlinHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:54: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
52 | public var swiftClassVar = SwiftHelperClass()
53 | public var swiftBaseClassVar = SwiftClass()
54 | 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
55 | public var swiftKotlinClassVar = KotlinHelperClass()
56 | public var swiftAnyVar: Any = "a"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:55: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
53 | public var swiftBaseClassVar = SwiftClass()
54 | public var swiftInnerClassVar = SwiftHelperClass.Inner()
55 | 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
56 | public var swiftAnyVar: Any = "a"
57 | public var swiftAnyHashableVar: AnyHashable = 1
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:56: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
54 | public var swiftInnerClassVar = SwiftHelperClass.Inner()
55 | public var swiftKotlinClassVar = KotlinHelperClass()
56 | 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
57 | public var swiftAnyHashableVar: AnyHashable = 1
58 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:57: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
55 | public var swiftKotlinClassVar = KotlinHelperClass()
56 | public var swiftAnyVar: Any = "a"
57 | 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
58 |
59 | // MARK: Global optional vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:61: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
59 | // MARK: Global optional vars
60 |
61 | 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
62 | // TODO: Optional char
63 | public var swiftOptionalDoubleVar: Double? = 1.0
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:63: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
61 | public var swiftOptionalBoolVar: Bool? = true
62 | // TODO: Optional char
63 | 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
64 | public var swiftOptionalFloatVar: Float? = 2.0
65 | public var swiftOptionalInt8Var: Int8? = nil
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:64: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
62 | // TODO: Optional char
63 | public var swiftOptionalDoubleVar: Double? = 1.0
64 | 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
65 | public var swiftOptionalInt8Var: Int8? = nil
66 | public var swiftOptionalInt16Var: Int16? = 3
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:65: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
63 | public var swiftOptionalDoubleVar: Double? = 1.0
64 | public var swiftOptionalFloatVar: Float? = 2.0
65 | 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
66 | public var swiftOptionalInt16Var: Int16? = 3
67 | public var swiftOptionalInt32Var: Int32? = 4
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:66: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
64 | public var swiftOptionalFloatVar: Float? = 2.0
65 | public var swiftOptionalInt8Var: Int8? = nil
66 | 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
67 | public var swiftOptionalInt32Var: Int32? = 4
68 | public var swiftOptionalInt64Var: Int64? = 5
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:67: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
65 | public var swiftOptionalInt8Var: Int8? = nil
66 | public var swiftOptionalInt16Var: Int16? = 3
67 | 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
68 | public var swiftOptionalInt64Var: Int64? = 5
69 | public var swiftOptionalIntVar: Int? = 6
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:68: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
66 | public var swiftOptionalInt16Var: Int16? = 3
67 | public var swiftOptionalInt32Var: Int32? = 4
68 | 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
69 | public var swiftOptionalIntVar: Int? = 6
70 | // TODO: Unsigned values
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:69: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
67 | public var swiftOptionalInt32Var: Int32? = 4
68 | public var swiftOptionalInt64Var: Int64? = 5
69 | 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
70 | // TODO: Unsigned values
71 | public var swiftOptionalStringVar: String? = "s"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:71: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
69 | public var swiftOptionalIntVar: Int? = 6
70 | // TODO: Unsigned values
71 | 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
72 | public var swiftOptionalClassVar: SwiftHelperClass? = SwiftHelperClass()
73 | public var swiftOptionalKotlinClassVar: KotlinHelperClass? = KotlinHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:72: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
70 | // TODO: Unsigned values
71 | public var swiftOptionalStringVar: String? = "s"
72 | 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
73 | public var swiftOptionalKotlinClassVar: KotlinHelperClass? = KotlinHelperClass()
74 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:73: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
71 | public var swiftOptionalStringVar: String? = "s"
72 | public var swiftOptionalClassVar: SwiftHelperClass? = SwiftHelperClass()
73 | 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
74 |
75 | // MARK: Global computed vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:108: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
106 | public class SwiftClass {
107 | public static let staticIntConstant = 1
108 | 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
109 | public static func staticFunc(string: String) -> String {
110 | return "swift" + string
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:368: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
366 | // MARK: Closures
367 |
368 | 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
369 | public var swiftClosure1Var: (Int) -> String = { i in "value = \(i)" }
370 | public var swiftClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:369: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
367 |
368 | public var swiftClosure0Var: () -> Void = { print("original") }
369 | 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
370 | public var swiftClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
371 | public var swiftClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:370: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
368 | public var swiftClosure0Var: () -> Void = { print("original") }
369 | public var swiftClosure1Var: (Int) -> String = { i in "value = \(i)" }
370 | 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
371 | public var swiftClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
372 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:371: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
369 | public var swiftClosure1Var: (Int) -> String = { i in "value = \(i)" }
370 | public var swiftClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
371 | 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
372 |
373 | // MARK: Containers
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:375: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
373 | // MARK: Containers
374 |
375 | 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
376 | public var swiftStringSetVar: Set<String> = ["a", "b", "c"]
377 | public var swiftIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:376: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
374 |
375 | public var swiftIntArrayVar = [1, 2, 3]
376 | 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
377 | public var swiftIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
378 | public var swiftIntStringTuple = (1, "s")
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:377: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
375 | public var swiftIntArrayVar = [1, 2, 3]
376 | public var swiftStringSetVar: Set<String> = ["a", "b", "c"]
377 | 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
378 | public var swiftIntStringTuple = (1, "s")
379 | public var swiftIntErrorResult: Result<Int, SwiftError> = .success(1)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:378: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
376 | public var swiftStringSetVar: Set<String> = ["a", "b", "c"]
377 | public var swiftIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
378 | 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
379 | public var swiftIntErrorResult: Result<Int, SwiftError> = .success(1)
380 | public var swiftHashable1: AnyHashable = SwiftHashable(HashableEnum.first)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:379: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
377 | public var swiftIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
378 | public var swiftIntStringTuple = (1, "s")
379 | 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
380 | public var swiftHashable1: AnyHashable = SwiftHashable(HashableEnum.first)
381 | public var swiftHashable2: AnyHashable = SwiftHashable(HashableEnum.first)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:380: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
378 | public var swiftIntStringTuple = (1, "s")
379 | public var swiftIntErrorResult: Result<Int, SwiftError> = .success(1)
380 | 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
381 | public var swiftHashable2: AnyHashable = SwiftHashable(HashableEnum.first)
382 | public var swiftHashable3: AnyHashable = SwiftHashable(HashableEnum.second)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:381: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
379 | public var swiftIntErrorResult: Result<Int, SwiftError> = .success(1)
380 | public var swiftHashable1: AnyHashable = SwiftHashable(HashableEnum.first)
381 | 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
382 | public var swiftHashable3: AnyHashable = SwiftHashable(HashableEnum.second)
383 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:382: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
380 | public var swiftHashable1: AnyHashable = SwiftHashable(HashableEnum.first)
381 | public var swiftHashable2: AnyHashable = SwiftHashable(HashableEnum.first)
382 | 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
383 |
384 | // SKIP @nobridge
[173/178] Emitting module SkipBridgeToKotlinSamples
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:20: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
18 | // TODO: Unsigned values
19 | public let swiftStringConstant = "s"
20 | 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
21 | public let swiftKotlinClassConstant = KotlinHelperClass()
22 |
:
148 | }
149 |
150 | public final class SwiftHelperClass: SwiftProtocol, SwiftGenericProtocol, Comparable, Identifiable {
| `- note: class 'SwiftHelperClass' does not conform to the 'Sendable' protocol
151 | public var id: String {
152 | return stringVar
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:21: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
19 | public let swiftStringConstant = "s"
20 | public let swiftClassConstant = SwiftHelperClass()
21 | 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
22 |
23 | // 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
:
19 | public let swiftStringConstant = "s"
20 | public let swiftClassConstant = SwiftHelperClass()
21 | 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
22 |
23 | // MARK: Global optional constants
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:36: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
34 | // TODO: Unsigned values
35 | public let swiftOptionalStringConstant: String? = "s"
36 | 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
37 | public let swiftOptionalKotlinClassConstant: KotlinHelperClass? = KotlinHelperClass()
38 |
:
148 | }
149 |
150 | public final class SwiftHelperClass: SwiftProtocol, SwiftGenericProtocol, Comparable, Identifiable {
| `- note: class 'SwiftHelperClass' does not conform to the 'Sendable' protocol
151 | public var id: String {
152 | return stringVar
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:37: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
35 | public let swiftOptionalStringConstant: String? = "s"
36 | public let swiftOptionalClassConstant: SwiftHelperClass? = SwiftHelperClass()
37 | 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
38 |
39 | // 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:41: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
39 | // MARK: Global vars
40 |
41 | 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
42 | // TODO: Char
43 | public var swiftDoubleVar = 1.0
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:43: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
41 | public var swiftBoolVar = true
42 | // TODO: Char
43 | 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
44 | public var swiftFloatVar: Float = 2.0
45 | public var swiftInt8Var: Int8 = 3
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:44: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
42 | // TODO: Char
43 | public var swiftDoubleVar = 1.0
44 | 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
45 | public var swiftInt8Var: Int8 = 3
46 | public var swiftInt16Var: Int16 = 4
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:45: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
43 | public var swiftDoubleVar = 1.0
44 | public var swiftFloatVar: Float = 2.0
45 | 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
46 | public var swiftInt16Var: Int16 = 4
47 | public var swiftInt32Var: Int32 = 5
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:46: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
44 | public var swiftFloatVar: Float = 2.0
45 | public var swiftInt8Var: Int8 = 3
46 | 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
47 | public var swiftInt32Var: Int32 = 5
48 | public var swiftInt64Var: Int64 = 6
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:47: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
45 | public var swiftInt8Var: Int8 = 3
46 | public var swiftInt16Var: Int16 = 4
47 | 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
48 | public var swiftInt64Var: Int64 = 6
49 | public var swiftIntVar = 7
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:48: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
46 | public var swiftInt16Var: Int16 = 4
47 | public var swiftInt32Var: Int32 = 5
48 | 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
49 | public var swiftIntVar = 7
50 | // TODO: Unsigned values
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:49: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
47 | public var swiftInt32Var: Int32 = 5
48 | public var swiftInt64Var: Int64 = 6
49 | 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
50 | // TODO: Unsigned values
51 | public var swiftStringVar = "s"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:51: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
49 | public var swiftIntVar = 7
50 | // TODO: Unsigned values
51 | 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
52 | public var swiftClassVar = SwiftHelperClass()
53 | public var swiftBaseClassVar = SwiftClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:52: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
50 | // TODO: Unsigned values
51 | public var swiftStringVar = "s"
52 | 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
53 | public var swiftBaseClassVar = SwiftClass()
54 | public var swiftInnerClassVar = SwiftHelperClass.Inner()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:53: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
51 | public var swiftStringVar = "s"
52 | public var swiftClassVar = SwiftHelperClass()
53 | 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
54 | public var swiftInnerClassVar = SwiftHelperClass.Inner()
55 | public var swiftKotlinClassVar = KotlinHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:54: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
52 | public var swiftClassVar = SwiftHelperClass()
53 | public var swiftBaseClassVar = SwiftClass()
54 | 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
55 | public var swiftKotlinClassVar = KotlinHelperClass()
56 | public var swiftAnyVar: Any = "a"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:55: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
53 | public var swiftBaseClassVar = SwiftClass()
54 | public var swiftInnerClassVar = SwiftHelperClass.Inner()
55 | 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
56 | public var swiftAnyVar: Any = "a"
57 | public var swiftAnyHashableVar: AnyHashable = 1
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:56: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
54 | public var swiftInnerClassVar = SwiftHelperClass.Inner()
55 | public var swiftKotlinClassVar = KotlinHelperClass()
56 | 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
57 | public var swiftAnyHashableVar: AnyHashable = 1
58 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:57: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
55 | public var swiftKotlinClassVar = KotlinHelperClass()
56 | public var swiftAnyVar: Any = "a"
57 | 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
58 |
59 | // MARK: Global optional vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:61: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
59 | // MARK: Global optional vars
60 |
61 | 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
62 | // TODO: Optional char
63 | public var swiftOptionalDoubleVar: Double? = 1.0
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:63: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
61 | public var swiftOptionalBoolVar: Bool? = true
62 | // TODO: Optional char
63 | 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
64 | public var swiftOptionalFloatVar: Float? = 2.0
65 | public var swiftOptionalInt8Var: Int8? = nil
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:64: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
62 | // TODO: Optional char
63 | public var swiftOptionalDoubleVar: Double? = 1.0
64 | 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
65 | public var swiftOptionalInt8Var: Int8? = nil
66 | public var swiftOptionalInt16Var: Int16? = 3
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:65: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
63 | public var swiftOptionalDoubleVar: Double? = 1.0
64 | public var swiftOptionalFloatVar: Float? = 2.0
65 | 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
66 | public var swiftOptionalInt16Var: Int16? = 3
67 | public var swiftOptionalInt32Var: Int32? = 4
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:66: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
64 | public var swiftOptionalFloatVar: Float? = 2.0
65 | public var swiftOptionalInt8Var: Int8? = nil
66 | 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
67 | public var swiftOptionalInt32Var: Int32? = 4
68 | public var swiftOptionalInt64Var: Int64? = 5
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:67: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
65 | public var swiftOptionalInt8Var: Int8? = nil
66 | public var swiftOptionalInt16Var: Int16? = 3
67 | 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
68 | public var swiftOptionalInt64Var: Int64? = 5
69 | public var swiftOptionalIntVar: Int? = 6
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:68: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
66 | public var swiftOptionalInt16Var: Int16? = 3
67 | public var swiftOptionalInt32Var: Int32? = 4
68 | 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
69 | public var swiftOptionalIntVar: Int? = 6
70 | // TODO: Unsigned values
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:69: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
67 | public var swiftOptionalInt32Var: Int32? = 4
68 | public var swiftOptionalInt64Var: Int64? = 5
69 | 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
70 | // TODO: Unsigned values
71 | public var swiftOptionalStringVar: String? = "s"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:71: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
69 | public var swiftOptionalIntVar: Int? = 6
70 | // TODO: Unsigned values
71 | 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
72 | public var swiftOptionalClassVar: SwiftHelperClass? = SwiftHelperClass()
73 | public var swiftOptionalKotlinClassVar: KotlinHelperClass? = KotlinHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:72: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
70 | // TODO: Unsigned values
71 | public var swiftOptionalStringVar: String? = "s"
72 | 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
73 | public var swiftOptionalKotlinClassVar: KotlinHelperClass? = KotlinHelperClass()
74 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:73: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
71 | public var swiftOptionalStringVar: String? = "s"
72 | public var swiftOptionalClassVar: SwiftHelperClass? = SwiftHelperClass()
73 | 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
74 |
75 | // MARK: Global computed vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:108: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
106 | public class SwiftClass {
107 | public static let staticIntConstant = 1
108 | 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
109 | public static func staticFunc(string: String) -> String {
110 | return "swift" + string
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:368: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
366 | // MARK: Closures
367 |
368 | 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
369 | public var swiftClosure1Var: (Int) -> String = { i in "value = \(i)" }
370 | public var swiftClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:369: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
367 |
368 | public var swiftClosure0Var: () -> Void = { print("original") }
369 | 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
370 | public var swiftClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
371 | public var swiftClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:370: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
368 | public var swiftClosure0Var: () -> Void = { print("original") }
369 | public var swiftClosure1Var: (Int) -> String = { i in "value = \(i)" }
370 | 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
371 | public var swiftClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
372 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:371: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
369 | public var swiftClosure1Var: (Int) -> String = { i in "value = \(i)" }
370 | public var swiftClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
371 | 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
372 |
373 | // MARK: Containers
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:375: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
373 | // MARK: Containers
374 |
375 | 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
376 | public var swiftStringSetVar: Set<String> = ["a", "b", "c"]
377 | public var swiftIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:376: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
374 |
375 | public var swiftIntArrayVar = [1, 2, 3]
376 | 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
377 | public var swiftIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
378 | public var swiftIntStringTuple = (1, "s")
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:377: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
375 | public var swiftIntArrayVar = [1, 2, 3]
376 | public var swiftStringSetVar: Set<String> = ["a", "b", "c"]
377 | 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
378 | public var swiftIntStringTuple = (1, "s")
379 | public var swiftIntErrorResult: Result<Int, SwiftError> = .success(1)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:378: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
376 | public var swiftStringSetVar: Set<String> = ["a", "b", "c"]
377 | public var swiftIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
378 | 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
379 | public var swiftIntErrorResult: Result<Int, SwiftError> = .success(1)
380 | public var swiftHashable1: AnyHashable = SwiftHashable(HashableEnum.first)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:379: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
377 | public var swiftIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
378 | public var swiftIntStringTuple = (1, "s")
379 | 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
380 | public var swiftHashable1: AnyHashable = SwiftHashable(HashableEnum.first)
381 | public var swiftHashable2: AnyHashable = SwiftHashable(HashableEnum.first)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:380: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
378 | public var swiftIntStringTuple = (1, "s")
379 | public var swiftIntErrorResult: Result<Int, SwiftError> = .success(1)
380 | 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
381 | public var swiftHashable2: AnyHashable = SwiftHashable(HashableEnum.first)
382 | public var swiftHashable3: AnyHashable = SwiftHashable(HashableEnum.second)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:381: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
379 | public var swiftIntErrorResult: Result<Int, SwiftError> = .success(1)
380 | public var swiftHashable1: AnyHashable = SwiftHashable(HashableEnum.first)
381 | 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
382 | public var swiftHashable3: AnyHashable = SwiftHashable(HashableEnum.second)
383 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToKotlinSamples/Samples.swift:382: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
380 | public var swiftHashable1: AnyHashable = SwiftHashable(HashableEnum.first)
381 | public var swiftHashable2: AnyHashable = SwiftHashable(HashableEnum.first)
382 | 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
383 |
384 | // 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] Emitting module SkipBridgeToSwiftSamplesTestsSupport
[179/181] Compiling SkipBridgeToSwiftSamplesTestsSupport TestsSupport.swift
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:47:12: warning: reference to var 'kotlinClassConstant' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
45 |
46 | public func testSupport_kotlinClassConstant_stringVar() -> String {
47 | return kotlinClassConstant.stringVar
| `- warning: reference to var 'kotlinClassConstant' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
48 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:21:12: note: var declared here
19 | // TODO: Unsigned values
20 | public let kotlinStringConstant = "s"
21 | public var kotlinClassConstant = KotlinHelperClass()
| `- note: var declared here
22 | public var kotlinSwiftClassConstant = SwiftHelperClass()
23 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:51:12: warning: reference to var 'kotlinSwiftClassConstant' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
49 |
50 | public func testSupport_kotlinSwiftClassConstant_stringVar() -> String {
51 | return kotlinSwiftClassConstant.stringVar
| `- warning: reference to var 'kotlinSwiftClassConstant' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:22:12: note: var declared here
20 | public let kotlinStringConstant = "s"
21 | public var kotlinClassConstant = KotlinHelperClass()
22 | public var kotlinSwiftClassConstant = SwiftHelperClass()
| `- note: var declared here
23 |
24 | // MARK: Global optional constants
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:91: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
89 |
90 | public func testSupport_kotlinBoolVar(value: Bool) -> Bool {
91 | 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
92 | return kotlinBoolVar
93 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:42:12: note: var declared here
40 | // MARK: Global vars
41 |
42 | public var kotlinBoolVar = true
| `- note: var declared here
43 | // TODO: Char
44 | public var kotlinDoubleVar = 1.0
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:92: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
90 | public func testSupport_kotlinBoolVar(value: Bool) -> Bool {
91 | kotlinBoolVar = value
92 | 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
93 | }
94 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:42:12: note: var declared here
40 | // MARK: Global vars
41 |
42 | public var kotlinBoolVar = true
| `- note: var declared here
43 | // TODO: Char
44 | public var kotlinDoubleVar = 1.0
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:96: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
94 |
95 | public func testSupport_kotlinDoubleVar(value: Double) -> Double {
96 | 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
97 | return kotlinDoubleVar
98 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:44:12: note: var declared here
42 | public var kotlinBoolVar = true
43 | // TODO: Char
44 | public var kotlinDoubleVar = 1.0
| `- note: var declared here
45 | public var kotlinFloatVar = Float(2.0)
46 | public var kotlinInt8Var = Int8(3)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:97: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
95 | public func testSupport_kotlinDoubleVar(value: Double) -> Double {
96 | kotlinDoubleVar = value
97 | 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
98 | }
99 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:44:12: note: var declared here
42 | public var kotlinBoolVar = true
43 | // TODO: Char
44 | public var kotlinDoubleVar = 1.0
| `- note: var declared here
45 | public var kotlinFloatVar = Float(2.0)
46 | public var kotlinInt8Var = Int8(3)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:101: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
99 |
100 | public func testSupport_kotlinFloatVar(value: Float) -> Float {
101 | 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
102 | return kotlinFloatVar
103 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:45:12: note: var declared here
43 | // TODO: Char
44 | public var kotlinDoubleVar = 1.0
45 | public var kotlinFloatVar = Float(2.0)
| `- note: var declared here
46 | public var kotlinInt8Var = Int8(3)
47 | public var kotlinInt16Var = Int16(4)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:102: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
100 | public func testSupport_kotlinFloatVar(value: Float) -> Float {
101 | kotlinFloatVar = value
102 | 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
103 | }
104 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:45:12: note: var declared here
43 | // TODO: Char
44 | public var kotlinDoubleVar = 1.0
45 | public var kotlinFloatVar = Float(2.0)
| `- note: var declared here
46 | public var kotlinInt8Var = Int8(3)
47 | public var kotlinInt16Var = Int16(4)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:106: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
104 |
105 | public func testSupport_kotlinInt8Var(value: Int8) -> Int8 {
106 | 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
107 | return kotlinInt8Var
108 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:46:12: note: var declared here
44 | public var kotlinDoubleVar = 1.0
45 | public var kotlinFloatVar = Float(2.0)
46 | public var kotlinInt8Var = Int8(3)
| `- note: var declared here
47 | public var kotlinInt16Var = Int16(4)
48 | public var kotlinInt32Var = Int32(5)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:107: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
105 | public func testSupport_kotlinInt8Var(value: Int8) -> Int8 {
106 | kotlinInt8Var = value
107 | 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
108 | }
109 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:46:12: note: var declared here
44 | public var kotlinDoubleVar = 1.0
45 | public var kotlinFloatVar = Float(2.0)
46 | public var kotlinInt8Var = Int8(3)
| `- note: var declared here
47 | public var kotlinInt16Var = Int16(4)
48 | public var kotlinInt32Var = Int32(5)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:111: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
109 |
110 | public func testSupport_kotlinInt16Var(value: Int16) -> Int16 {
111 | 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
112 | return kotlinInt16Var
113 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:47:12: note: var declared here
45 | public var kotlinFloatVar = Float(2.0)
46 | public var kotlinInt8Var = Int8(3)
47 | public var kotlinInt16Var = Int16(4)
| `- note: var declared here
48 | public var kotlinInt32Var = Int32(5)
49 | public var kotlinInt64Var = Int64(6)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:112: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
110 | public func testSupport_kotlinInt16Var(value: Int16) -> Int16 {
111 | kotlinInt16Var = value
112 | 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
113 | }
114 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:47:12: note: var declared here
45 | public var kotlinFloatVar = Float(2.0)
46 | public var kotlinInt8Var = Int8(3)
47 | public var kotlinInt16Var = Int16(4)
| `- note: var declared here
48 | public var kotlinInt32Var = Int32(5)
49 | public var kotlinInt64Var = Int64(6)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:116: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
114 |
115 | public func testSupport_kotlinInt32Var(value: Int32) -> Int32 {
116 | 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
117 | return kotlinInt32Var
118 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:48:12: note: var declared here
46 | public var kotlinInt8Var = Int8(3)
47 | public var kotlinInt16Var = Int16(4)
48 | public var kotlinInt32Var = Int32(5)
| `- note: var declared here
49 | public var kotlinInt64Var = Int64(6)
50 | public var kotlinIntVar = 7
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:117: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
115 | public func testSupport_kotlinInt32Var(value: Int32) -> Int32 {
116 | kotlinInt32Var = value
117 | 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
118 | }
119 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:48:12: note: var declared here
46 | public var kotlinInt8Var = Int8(3)
47 | public var kotlinInt16Var = Int16(4)
48 | public var kotlinInt32Var = Int32(5)
| `- note: var declared here
49 | public var kotlinInt64Var = Int64(6)
50 | public var kotlinIntVar = 7
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:121: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
119 |
120 | public func testSupport_kotlinInt64Var(value: Int64) -> Int64 {
121 | 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
122 | return kotlinInt64Var
123 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:49:12: note: var declared here
47 | public var kotlinInt16Var = Int16(4)
48 | public var kotlinInt32Var = Int32(5)
49 | public var kotlinInt64Var = Int64(6)
| `- note: var declared here
50 | public var kotlinIntVar = 7
51 | // TODO: Unsigned values
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:122: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
120 | public func testSupport_kotlinInt64Var(value: Int64) -> Int64 {
121 | kotlinInt64Var = value
122 | 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
123 | }
124 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:49:12: note: var declared here
47 | public var kotlinInt16Var = Int16(4)
48 | public var kotlinInt32Var = Int32(5)
49 | public var kotlinInt64Var = Int64(6)
| `- note: var declared here
50 | public var kotlinIntVar = 7
51 | // TODO: Unsigned values
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:126: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
124 |
125 | public func testSupport_kotlinIntVar(value: Int) -> Int {
126 | 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
127 | return kotlinIntVar
128 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:50:12: note: var declared here
48 | public var kotlinInt32Var = Int32(5)
49 | public var kotlinInt64Var = Int64(6)
50 | public var kotlinIntVar = 7
| `- note: var declared here
51 | // TODO: Unsigned values
52 | public var kotlinStringVar = "s"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:127: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
125 | public func testSupport_kotlinIntVar(value: Int) -> Int {
126 | kotlinIntVar = value
127 | 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
128 | }
129 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:50:12: note: var declared here
48 | public var kotlinInt32Var = Int32(5)
49 | public var kotlinInt64Var = Int64(6)
50 | public var kotlinIntVar = 7
| `- note: var declared here
51 | // TODO: Unsigned values
52 | public var kotlinStringVar = "s"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:131: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
129 |
130 | public func testSupport_kotlinStringVar(value: String) -> String {
131 | 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
132 | return kotlinStringVar
133 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:52:12: note: var declared here
50 | public var kotlinIntVar = 7
51 | // TODO: Unsigned values
52 | public var kotlinStringVar = "s"
| `- note: var declared here
53 | public var kotlinClassVar = KotlinHelperClass()
54 | public var kotlinBaseClassVar = KotlinClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:132: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
130 | public func testSupport_kotlinStringVar(value: String) -> String {
131 | kotlinStringVar = value
132 | 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
133 | }
134 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:52:12: note: var declared here
50 | public var kotlinIntVar = 7
51 | // TODO: Unsigned values
52 | public var kotlinStringVar = "s"
| `- note: var declared here
53 | public var kotlinClassVar = KotlinHelperClass()
54 | public var kotlinBaseClassVar = KotlinClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:138: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
136 | let helper = KotlinHelperClass()
137 | helper.stringVar = value
138 | 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
139 | return kotlinClassVar.stringVar
140 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:53:12: note: var declared here
51 | // TODO: Unsigned values
52 | public var kotlinStringVar = "s"
53 | public var kotlinClassVar = KotlinHelperClass()
| `- note: var declared here
54 | public var kotlinBaseClassVar = KotlinClass()
55 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:139: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
137 | helper.stringVar = value
138 | kotlinClassVar = helper
139 | 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
140 | }
141 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:53:12: note: var declared here
51 | // TODO: Unsigned values
52 | public var kotlinStringVar = "s"
53 | public var kotlinClassVar = KotlinHelperClass()
| `- note: var declared here
54 | public var kotlinBaseClassVar = KotlinClass()
55 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:145: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
143 | let inner = KotlinHelperClass.Inner()
144 | inner.intVar = value
145 | 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
146 | return kotlinInnerClassVar.intVar
147 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:55:12: note: var declared here
53 | public var kotlinClassVar = KotlinHelperClass()
54 | public var kotlinBaseClassVar = KotlinClass()
55 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
| `- note: var declared here
56 | public var kotlinSwiftClassVar = SwiftHelperClass()
57 | public var kotlinAnyVar: Any = "a"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:146: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
144 | inner.intVar = value
145 | kotlinInnerClassVar = inner
146 | 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
147 | }
148 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:55:12: note: var declared here
53 | public var kotlinClassVar = KotlinHelperClass()
54 | public var kotlinBaseClassVar = KotlinClass()
55 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
| `- note: var declared here
56 | public var kotlinSwiftClassVar = SwiftHelperClass()
57 | public var kotlinAnyVar: Any = "a"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:152: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
150 | let helper = SwiftHelperClass()
151 | helper.stringVar = value
152 | 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
153 | return kotlinSwiftClassVar.stringVar
154 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:56:12: note: var declared here
54 | public var kotlinBaseClassVar = KotlinClass()
55 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
56 | public var kotlinSwiftClassVar = SwiftHelperClass()
| `- note: var declared here
57 | public var kotlinAnyVar: Any = "a"
58 | public var kotlinAnyHashableVar: AnyHashable = 1
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:153: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
151 | helper.stringVar = value
152 | kotlinSwiftClassVar = helper
153 | 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
154 | }
155 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:56:12: note: var declared here
54 | public var kotlinBaseClassVar = KotlinClass()
55 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
56 | public var kotlinSwiftClassVar = SwiftHelperClass()
| `- note: var declared here
57 | public var kotlinAnyVar: Any = "a"
58 | public var kotlinAnyHashableVar: AnyHashable = 1
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:157: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
155 |
156 | public func testSupport_kotlinAnyVar(value: Any) -> Any {
157 | 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
158 | return kotlinAnyVar
159 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:57:12: note: var declared here
55 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
56 | public var kotlinSwiftClassVar = SwiftHelperClass()
57 | public var kotlinAnyVar: Any = "a"
| `- note: var declared here
58 | public var kotlinAnyHashableVar: AnyHashable = 1
59 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:158: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
156 | public func testSupport_kotlinAnyVar(value: Any) -> Any {
157 | kotlinAnyVar = value
158 | 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
159 | }
160 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:57:12: note: var declared here
55 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
56 | public var kotlinSwiftClassVar = SwiftHelperClass()
57 | public var kotlinAnyVar: Any = "a"
| `- note: var declared here
58 | public var kotlinAnyHashableVar: AnyHashable = 1
59 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:164: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
162 | let helper = KotlinHelperClass()
163 | helper.stringVar = value
164 | 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
165 | return (kotlinAnyVar as? KotlinHelperClass)?.stringVar
166 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:57:12: note: var declared here
55 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
56 | public var kotlinSwiftClassVar = SwiftHelperClass()
57 | public var kotlinAnyVar: Any = "a"
| `- note: var declared here
58 | public var kotlinAnyHashableVar: AnyHashable = 1
59 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:165: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
163 | helper.stringVar = value
164 | kotlinAnyVar = helper
165 | 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
166 | }
167 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:57:12: note: var declared here
55 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
56 | public var kotlinSwiftClassVar = SwiftHelperClass()
57 | public var kotlinAnyVar: Any = "a"
| `- note: var declared here
58 | public var kotlinAnyHashableVar: AnyHashable = 1
59 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:169: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
167 |
168 | public func testSupport_kotlinAnyHashableVar(value: AnyHashable) -> AnyHashable {
169 | 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
170 | return kotlinAnyHashableVar
171 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:58:12: note: var declared here
56 | public var kotlinSwiftClassVar = SwiftHelperClass()
57 | public var kotlinAnyVar: Any = "a"
58 | public var kotlinAnyHashableVar: AnyHashable = 1
| `- note: var declared here
59 |
60 | // MARK: Global optional vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:170: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
168 | public func testSupport_kotlinAnyHashableVar(value: AnyHashable) -> AnyHashable {
169 | kotlinAnyHashableVar = value
170 | 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
171 | }
172 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:58:12: note: var declared here
56 | public var kotlinSwiftClassVar = SwiftHelperClass()
57 | public var kotlinAnyVar: Any = "a"
58 | public var kotlinAnyHashableVar: AnyHashable = 1
| `- note: var declared here
59 |
60 | // MARK: Global optional vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:176: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
174 | let helper = KotlinHelperClass()
175 | helper.stringVar = value
176 | 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
177 | return (kotlinAnyHashableVar as? KotlinHelperClass)?.stringVar
178 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:58:12: note: var declared here
56 | public var kotlinSwiftClassVar = SwiftHelperClass()
57 | public var kotlinAnyVar: Any = "a"
58 | public var kotlinAnyHashableVar: AnyHashable = 1
| `- note: var declared here
59 |
60 | // MARK: Global optional vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:177: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
175 | helper.stringVar = value
176 | kotlinAnyHashableVar = helper
177 | 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
178 | }
179 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:58:12: note: var declared here
56 | public var kotlinSwiftClassVar = SwiftHelperClass()
57 | public var kotlinAnyVar: Any = "a"
58 | public var kotlinAnyHashableVar: AnyHashable = 1
| `- note: var declared here
59 |
60 | // MARK: Global optional vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:181: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
179 |
180 | public func testSupport_kotlinOptionalBoolVar(value: Bool?) -> Bool? {
181 | 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
182 | return kotlinOptionalBoolVar
183 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:62:12: note: var declared here
60 | // MARK: Global optional vars
61 |
62 | public var kotlinOptionalBoolVar: Bool? = true
| `- note: var declared here
63 | // TODO: Optional char
64 | public var kotlinOptionalDoubleVar: Double? = 1.0
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:182: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
180 | public func testSupport_kotlinOptionalBoolVar(value: Bool?) -> Bool? {
181 | kotlinOptionalBoolVar = value
182 | 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
183 | }
184 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:62:12: note: var declared here
60 | // MARK: Global optional vars
61 |
62 | public var kotlinOptionalBoolVar: Bool? = true
| `- note: var declared here
63 | // TODO: Optional char
64 | public var kotlinOptionalDoubleVar: Double? = 1.0
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:186: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
184 |
185 | public func testSupport_kotlinOptionalDoubleVar(value: Double?) -> Double? {
186 | 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
187 | return kotlinOptionalDoubleVar
188 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:64:12: note: var declared here
62 | public var kotlinOptionalBoolVar: Bool? = true
63 | // TODO: Optional char
64 | public var kotlinOptionalDoubleVar: Double? = 1.0
| `- note: var declared here
65 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
66 | public var kotlinOptionalInt8Var: Int8? = nil
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:187: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
185 | public func testSupport_kotlinOptionalDoubleVar(value: Double?) -> Double? {
186 | kotlinOptionalDoubleVar = value
187 | 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
188 | }
189 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:64:12: note: var declared here
62 | public var kotlinOptionalBoolVar: Bool? = true
63 | // TODO: Optional char
64 | public var kotlinOptionalDoubleVar: Double? = 1.0
| `- note: var declared here
65 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
66 | public var kotlinOptionalInt8Var: Int8? = nil
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:191: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
189 |
190 | public func testSupport_kotlinOptionalFloatVar(value: Float?) -> Float? {
191 | 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
192 | return kotlinOptionalFloatVar
193 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:65:12: note: var declared here
63 | // TODO: Optional char
64 | public var kotlinOptionalDoubleVar: Double? = 1.0
65 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
| `- note: var declared here
66 | public var kotlinOptionalInt8Var: Int8? = nil
67 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:192: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
190 | public func testSupport_kotlinOptionalFloatVar(value: Float?) -> Float? {
191 | kotlinOptionalFloatVar = value
192 | 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
193 | }
194 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:65:12: note: var declared here
63 | // TODO: Optional char
64 | public var kotlinOptionalDoubleVar: Double? = 1.0
65 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
| `- note: var declared here
66 | public var kotlinOptionalInt8Var: Int8? = nil
67 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:196: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
194 |
195 | public func testSupport_kotlinOptionalInt8Var(value: Int8?) -> Int8? {
196 | 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
197 | return kotlinOptionalInt8Var
198 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:66:12: note: var declared here
64 | public var kotlinOptionalDoubleVar: Double? = 1.0
65 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
66 | public var kotlinOptionalInt8Var: Int8? = nil
| `- note: var declared here
67 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
68 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:197: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
195 | public func testSupport_kotlinOptionalInt8Var(value: Int8?) -> Int8? {
196 | kotlinOptionalInt8Var = value
197 | 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
198 | }
199 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:66:12: note: var declared here
64 | public var kotlinOptionalDoubleVar: Double? = 1.0
65 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
66 | public var kotlinOptionalInt8Var: Int8? = nil
| `- note: var declared here
67 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
68 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:201: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
199 |
200 | public func testSupport_kotlinOptionalInt16Var(value: Int16?) -> Int16? {
201 | 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
202 | return kotlinOptionalInt16Var
203 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:67:12: note: var declared here
65 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
66 | public var kotlinOptionalInt8Var: Int8? = nil
67 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
| `- note: var declared here
68 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
69 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:202: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
200 | public func testSupport_kotlinOptionalInt16Var(value: Int16?) -> Int16? {
201 | kotlinOptionalInt16Var = value
202 | 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
203 | }
204 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:67:12: note: var declared here
65 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
66 | public var kotlinOptionalInt8Var: Int8? = nil
67 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
| `- note: var declared here
68 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
69 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:206: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
204 |
205 | public func testSupport_kotlinOptionalInt32Var(value: Int32?) -> Int32? {
206 | 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
207 | return kotlinOptionalInt32Var
208 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:68:12: note: var declared here
66 | public var kotlinOptionalInt8Var: Int8? = nil
67 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
68 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
| `- note: var declared here
69 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
70 | public var kotlinOptionalIntVar: Int? = 6
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:207: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
205 | public func testSupport_kotlinOptionalInt32Var(value: Int32?) -> Int32? {
206 | kotlinOptionalInt32Var = value
207 | 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
208 | }
209 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:68:12: note: var declared here
66 | public var kotlinOptionalInt8Var: Int8? = nil
67 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
68 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
| `- note: var declared here
69 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
70 | public var kotlinOptionalIntVar: Int? = 6
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:211: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
209 |
210 | public func testSupport_kotlinOptionalInt64Var(value: Int64?) -> Int64? {
211 | 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
212 | return kotlinOptionalInt64Var
213 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:69:12: note: var declared here
67 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
68 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
69 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
| `- note: var declared here
70 | public var kotlinOptionalIntVar: Int? = 6
71 | // TODO: Unsigned values
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:212: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
210 | public func testSupport_kotlinOptionalInt64Var(value: Int64?) -> Int64? {
211 | kotlinOptionalInt64Var = value
212 | 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
213 | }
214 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:69:12: note: var declared here
67 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
68 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
69 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
| `- note: var declared here
70 | public var kotlinOptionalIntVar: Int? = 6
71 | // TODO: Unsigned values
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:216: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
214 |
215 | public func testSupport_kotlinOptionalIntVar(value: Int?) -> Int? {
216 | 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
217 | return kotlinOptionalIntVar
218 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:70:12: note: var declared here
68 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
69 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
70 | public var kotlinOptionalIntVar: Int? = 6
| `- note: var declared here
71 | // TODO: Unsigned values
72 | public var kotlinOptionalStringVar: String? = "s"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:217: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
215 | public func testSupport_kotlinOptionalIntVar(value: Int?) -> Int? {
216 | kotlinOptionalIntVar = value
217 | 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
218 | }
219 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:70:12: note: var declared here
68 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
69 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
70 | public var kotlinOptionalIntVar: Int? = 6
| `- note: var declared here
71 | // TODO: Unsigned values
72 | public var kotlinOptionalStringVar: String? = "s"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:221: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
219 |
220 | public func testSupport_kotlinOptionalStringVar(value: String?) -> String? {
221 | 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
222 | return kotlinOptionalStringVar
223 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:72:12: note: var declared here
70 | public var kotlinOptionalIntVar: Int? = 6
71 | // TODO: Unsigned values
72 | public var kotlinOptionalStringVar: String? = "s"
| `- note: var declared here
73 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
74 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:222: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
220 | public func testSupport_kotlinOptionalStringVar(value: String?) -> String? {
221 | kotlinOptionalStringVar = value
222 | 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
223 | }
224 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:72:12: note: var declared here
70 | public var kotlinOptionalIntVar: Int? = 6
71 | // TODO: Unsigned values
72 | public var kotlinOptionalStringVar: String? = "s"
| `- note: var declared here
73 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
74 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:229: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
227 | let helper = KotlinHelperClass()
228 | helper.stringVar = value
229 | 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
230 | } else {
231 | kotlinOptionalClassVar = nil
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:73:12: note: var declared here
71 | // TODO: Unsigned values
72 | public var kotlinOptionalStringVar: String? = "s"
73 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
| `- note: var declared here
74 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
75 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:231: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
229 | kotlinOptionalClassVar = helper
230 | } else {
231 | 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
232 | }
233 | return kotlinOptionalClassVar?.stringVar
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:73:12: note: var declared here
71 | // TODO: Unsigned values
72 | public var kotlinOptionalStringVar: String? = "s"
73 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
| `- note: var declared here
74 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
75 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:233: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
231 | kotlinOptionalClassVar = nil
232 | }
233 | 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
234 | }
235 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:73:12: note: var declared here
71 | // TODO: Unsigned values
72 | public var kotlinOptionalStringVar: String? = "s"
73 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
| `- note: var declared here
74 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
75 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:240: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
238 | let helper = SwiftHelperClass()
239 | helper.stringVar = value
240 | 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
241 | } else {
242 | kotlinOptionalSwiftClassVar = nil
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:74:12: note: var declared here
72 | public var kotlinOptionalStringVar: String? = "s"
73 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
74 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
| `- note: var declared here
75 |
76 | // MARK: Global computed vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:242: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
240 | kotlinOptionalSwiftClassVar = helper
241 | } else {
242 | 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
243 | }
244 | return kotlinOptionalSwiftClassVar?.stringVar
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:74:12: note: var declared here
72 | public var kotlinOptionalStringVar: String? = "s"
73 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
74 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
| `- note: var declared here
75 |
76 | // MARK: Global computed vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:244: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
242 | kotlinOptionalSwiftClassVar = nil
243 | }
244 | 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
245 | }
246 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:74:12: note: var declared here
72 | public var kotlinOptionalStringVar: String? = "s"
73 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
74 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
| `- note: var declared here
75 |
76 | // MARK: Global computed vars
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:301: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
299 |
300 | public func testSupport_kotlinClassMemberStaticVar(value: Int) -> Int {
301 | 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
302 | return KotlinClass.staticIntVar
303 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:109:23: note: class property declared here
107 | public class KotlinClass {
108 | public static let staticIntConstant = 1
109 | public static var staticIntVar = 1
| `- note: class property declared here
110 | public static func staticFunc(string: String) -> String {
111 | return "kotlin" + string
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:302: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
300 | public func testSupport_kotlinClassMemberStaticVar(value: Int) -> Int {
301 | KotlinClass.staticIntVar = 99
302 | 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
303 | }
304 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:109:23: note: class property declared here
107 | public class KotlinClass {
108 | public static let staticIntConstant = 1
109 | public static var staticIntVar = 1
| `- note: class property declared here
110 | public static func staticFunc(string: String) -> String {
111 | return "kotlin" + string
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:343: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
341 | }
342 |
343 | 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
344 | kotlinBaseClassVar.intVar = 101
345 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:54:12: note: var declared here
52 | public var kotlinStringVar = "s"
53 | public var kotlinClassVar = KotlinHelperClass()
54 | public var kotlinBaseClassVar = KotlinClass()
| `- note: var declared here
55 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
56 | public var kotlinSwiftClassVar = SwiftHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:344: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
342 |
343 | kotlinBaseClassVar = sub
344 | 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
345 |
346 | let sub2 = kotlinBaseClassVar as? KotlinSubclass
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:54:12: note: var declared here
52 | public var kotlinStringVar = "s"
53 | public var kotlinClassVar = KotlinHelperClass()
54 | public var kotlinBaseClassVar = KotlinClass()
| `- note: var declared here
55 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
56 | public var kotlinSwiftClassVar = SwiftHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:346: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
344 | kotlinBaseClassVar.intVar = 101
345 |
346 | 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
347 | guard let sub2 else {
348 | return "sub2 != nil"
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:54:12: note: var declared here
52 | public var kotlinStringVar = "s"
53 | public var kotlinClassVar = KotlinHelperClass()
54 | public var kotlinBaseClassVar = KotlinClass()
| `- note: var declared here
55 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
56 | public var kotlinSwiftClassVar = SwiftHelperClass()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:686: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
684 |
685 | public func testSupport_kotlinClosure0Var() {
686 | 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
687 | kotlinClosure0Var = { print("reassigned") }
688 | kotlinClosure0Var()
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:353:12: note: var declared here
351 | // MARK: Closures
352 |
353 | public var kotlinClosure0Var: () -> Void = { print("original") }
| `- note: var declared here
354 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
355 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:687: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
685 | public func testSupport_kotlinClosure0Var() {
686 | kotlinClosure0Var()
687 | 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
688 | kotlinClosure0Var()
689 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:353:12: note: var declared here
351 | // MARK: Closures
352 |
353 | public var kotlinClosure0Var: () -> Void = { print("original") }
| `- note: var declared here
354 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
355 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:688: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
686 | kotlinClosure0Var()
687 | kotlinClosure0Var = { print("reassigned") }
688 | 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
689 | }
690 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:353:12: note: var declared here
351 | // MARK: Closures
352 |
353 | public var kotlinClosure0Var: () -> Void = { print("original") }
| `- note: var declared here
354 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
355 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:692: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
690 |
691 | public func testSupport_kotlinClosure1Var(value: Int) -> String {
692 | 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
693 | kotlinClosure1Var = { i in "value = \(i)" }
694 | let s2 = kotlinClosure1Var(value)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:354:12: note: var declared here
352 |
353 | public var kotlinClosure0Var: () -> Void = { print("original") }
354 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
| `- note: var declared here
355 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
356 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:693: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
691 | public func testSupport_kotlinClosure1Var(value: Int) -> String {
692 | let s1 = kotlinClosure1Var(value)
693 | 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
694 | let s2 = kotlinClosure1Var(value)
695 | return s1 == s2 ? s1 : s1 + "/" + s2
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:354:12: note: var declared here
352 |
353 | public var kotlinClosure0Var: () -> Void = { print("original") }
354 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
| `- note: var declared here
355 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
356 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:694: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
692 | let s1 = kotlinClosure1Var(value)
693 | kotlinClosure1Var = { i in "value = \(i)" }
694 | 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
695 | return s1 == s2 ? s1 : s1 + "/" + s2
696 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:354:12: note: var declared here
352 |
353 | public var kotlinClosure0Var: () -> Void = { print("original") }
354 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
| `- note: var declared here
355 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
356 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:699: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
697 |
698 | public func testSupport_kotlinClosure1PrimitivesVar(value: Int64) -> Int {
699 | 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
700 | kotlinClosure1PrimitivesVar = { l in Int(l / 1000) }
701 | let i2 = kotlinClosure1PrimitivesVar(value)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:355:12: note: var declared here
353 | public var kotlinClosure0Var: () -> Void = { print("original") }
354 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
355 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
| `- note: var declared here
356 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
357 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:700: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
698 | public func testSupport_kotlinClosure1PrimitivesVar(value: Int64) -> Int {
699 | let i1 = kotlinClosure1PrimitivesVar(value)
700 | 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
701 | let i2 = kotlinClosure1PrimitivesVar(value)
702 | return i1 == i2 ? i1 : i1 * 10000 + i2
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:355:12: note: var declared here
353 | public var kotlinClosure0Var: () -> Void = { print("original") }
354 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
355 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
| `- note: var declared here
356 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
357 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:701: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
699 | let i1 = kotlinClosure1PrimitivesVar(value)
700 | kotlinClosure1PrimitivesVar = { l in Int(l / 1000) }
701 | 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
702 | return i1 == i2 ? i1 : i1 * 10000 + i2
703 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:355:12: note: var declared here
353 | public var kotlinClosure0Var: () -> Void = { print("original") }
354 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
355 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
| `- note: var declared here
356 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
357 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:706: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
704 |
705 | public func testSupport_kotlinClosure1OptionalsVar(value: String?) -> Int? {
706 | 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
707 | kotlinClosure1OptionalsVar = { s in s?.count }
708 | let i2 = kotlinClosure1OptionalsVar(value)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:356:12: note: var declared here
354 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
355 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
356 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
| `- note: var declared here
357 |
358 | // MARK: Containers
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:707: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
705 | public func testSupport_kotlinClosure1OptionalsVar(value: String?) -> Int? {
706 | let i1 = kotlinClosure1OptionalsVar(value)
707 | 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
708 | let i2 = kotlinClosure1OptionalsVar(value)
709 | return i1 == i2 ? i1 : (i1 ?? 0) * 10000 + (i2 ?? 0)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:356:12: note: var declared here
354 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
355 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
356 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
| `- note: var declared here
357 |
358 | // MARK: Containers
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:708: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
706 | let i1 = kotlinClosure1OptionalsVar(value)
707 | kotlinClosure1OptionalsVar = { s in s?.count }
708 | 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
709 | return i1 == i2 ? i1 : (i1 ?? 0) * 10000 + (i2 ?? 0)
710 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:356:12: note: var declared here
354 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
355 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
356 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
| `- note: var declared here
357 |
358 | // MARK: Containers
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:717: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
715 |
716 | public func testSupport_kotlinIntArrayVar(value: [Int]) -> [Int] {
717 | 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
718 | return kotlinIntArrayVar
719 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:360:12: note: var declared here
358 | // MARK: Containers
359 |
360 | public var kotlinIntArrayVar = [1, 2, 3]
| `- note: var declared here
361 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
362 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:718: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
716 | public func testSupport_kotlinIntArrayVar(value: [Int]) -> [Int] {
717 | kotlinIntArrayVar = value
718 | 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
719 | }
720 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:360:12: note: var declared here
358 | // MARK: Containers
359 |
360 | public var kotlinIntArrayVar = [1, 2, 3]
| `- note: var declared here
361 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
362 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:722: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
720 |
721 | public func testSupport_kotlinStringSetVar(value: Set<String>) -> Set<String> {
722 | 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
723 | return kotlinStringSetVar
724 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:361:12: note: var declared here
359 |
360 | public var kotlinIntArrayVar = [1, 2, 3]
361 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
| `- note: var declared here
362 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
363 | public var kotlinIntStringTupleVar = (1, "s")
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:723: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
721 | public func testSupport_kotlinStringSetVar(value: Set<String>) -> Set<String> {
722 | kotlinStringSetVar = value
723 | 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
724 | }
725 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:361:12: note: var declared here
359 |
360 | public var kotlinIntArrayVar = [1, 2, 3]
361 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
| `- note: var declared here
362 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
363 | public var kotlinIntStringTupleVar = (1, "s")
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:727: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
725 |
726 | public func testSupport_kotlinIntStringDictionaryVar(value: [Int: String]) -> [Int: String] {
727 | 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
728 | return kotlinIntStringDictionaryVar
729 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:362:12: note: var declared here
360 | public var kotlinIntArrayVar = [1, 2, 3]
361 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
362 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
| `- note: var declared here
363 | public var kotlinIntStringTupleVar = (1, "s")
364 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:728: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
726 | public func testSupport_kotlinIntStringDictionaryVar(value: [Int: String]) -> [Int: String] {
727 | kotlinIntStringDictionaryVar = value
728 | 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
729 | }
730 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:362:12: note: var declared here
360 | public var kotlinIntArrayVar = [1, 2, 3]
361 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
362 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
| `- note: var declared here
363 | public var kotlinIntStringTupleVar = (1, "s")
364 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:732: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
730 |
731 | public func testSupport_kotlinIntStringTupleVar(value: (Int, String)) -> (Int, String) {
732 | 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
733 | return kotlinIntStringTupleVar
734 | }
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:363:12: note: var declared here
361 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
362 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
363 | public var kotlinIntStringTupleVar = (1, "s")
| `- note: var declared here
364 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
365 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:733: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
731 | public func testSupport_kotlinIntStringTupleVar(value: (Int, String)) -> (Int, String) {
732 | kotlinIntStringTupleVar = value
733 | 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
734 | }
735 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:363:12: note: var declared here
361 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
362 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
363 | public var kotlinIntStringTupleVar = (1, "s")
| `- note: var declared here
364 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
365 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:738: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
736 | public func testSupport_kotlinIntErrorResultVar(value: Int?) -> Int? {
737 | if let value {
738 | 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
739 | } else {
740 | kotlinIntErrorResult = .failure(KotlinError())
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:364:12: note: var declared here
362 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
363 | public var kotlinIntStringTupleVar = (1, "s")
364 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
| `- note: var declared here
365 |
366 | // MARK: Functions
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:740: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
738 | kotlinIntErrorResult = .success(value)
739 | } else {
740 | 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
741 | }
742 | switch kotlinIntErrorResult {
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:364:12: note: var declared here
362 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
363 | public var kotlinIntStringTupleVar = (1, "s")
364 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
| `- note: var declared here
365 |
366 | // MARK: Functions
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:742: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
740 | kotlinIntErrorResult = .failure(KotlinError())
741 | }
742 | 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
743 | case .success(let ret):
744 | return ret
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:364:12: note: var declared here
362 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
363 | public var kotlinIntStringTupleVar = (1, "s")
364 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
| `- note: var declared here
365 |
366 | // MARK: Functions
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:430:16: warning: will never be executed
427 | return "s1.intVar == 2"
428 | }
429 | guard s2.intVar == 3 else {
| `- note: condition always evaluates to true
430 | return "s2.intVar == 3"
| `- warning: will never be executed
431 | }
432 |
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:450:16: warning: will never be executed
447 |
448 | s1.intVar = 3
449 | guard s1.intVar == 3 else {
| `- note: condition always evaluates to true
450 | return "s1.intVar == 3"
| `- warning: will never be executed
451 | }
452 | guard obj.swiftStructVar.intVar == 2 else {
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:460:16: warning: will never be executed
457 | var s2 = obj.swiftStructVar
458 | s2.intVar = 100
459 | guard s1.intVar == 3 else {
| `- note: condition always evaluates to true
460 | return "s1.intVar == 3"
| `- warning: will never be executed
461 | }
462 | guard s2.intVar == 100 else {
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:463:16: warning: will never be executed
460 | return "s1.intVar == 3"
461 | }
462 | guard s2.intVar == 100 else {
| `- note: condition always evaluates to true
463 | return "s2.intVar == 100"
| `- warning: will never be executed
464 | }
465 | guard obj.swiftStructVar.intVar == 99 else {
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:478:16: warning: will never be executed
475 |
476 | s1.intVar = 3
477 | guard s1.intVar == 3 else {
| `- note: condition always evaluates to true
478 | return "s1.intVar == 3"
| `- warning: will never be executed
479 | }
480 | guard obj.kotlinStructVar.intVar == 2 else {
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:488:16: warning: will never be executed
485 | var s2 = obj.kotlinStructVar
486 | s2.intVar = 100
487 | guard s1.intVar == 3 else {
| `- note: condition always evaluates to true
488 | return "s1.intVar == 3"
| `- warning: will never be executed
489 | }
490 | guard s2.intVar == 100 else {
/Users/admin/builder/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:491:16: warning: will never be executed
488 | return "s1.intVar == 3"
489 | }
490 | guard s2.intVar == 100 else {
| `- note: condition always evaluates to true
491 | return "s2.intVar == 100"
| `- warning: will never be executed
492 | }
493 | guard obj.kotlinStructVar.intVar == 99 else {
[179/181] Write Objects.LinkFileList
[180/181] Linking libSkipBridgeToSwiftSamplesTestsSupport.dylib
Build complete! (13.47s)
Build complete.
{
"dependencies" : [
{
"identity" : "skip",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.22",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://source.skip.tools/skip.git"
},
{
"identity" : "skip-lib",
"requirement" : {
"range" : [
{
"lower_bound" : "1.3.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://source.skip.tools/skip-lib.git"
},
{
"identity" : "skip-foundation",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.12",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://source.skip.tools/skip-foundation.git"
},
{
"identity" : "swift-jni",
"requirement" : {
"range" : [
{
"lower_bound" : "0.0.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.