Build Information
Successful build of skip-bridge, reference 0.16.1 (cbd6eb
), with Swift 6.1 for Linux on 27 Aug 2025 02:59:35 UTC.
Swift 6 data race errors: 105
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -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 2>&1
Build Log
| |- warning: var 'kotlinOptionalUnsignedInt64Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalUnsignedInt64Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalUnsignedInt64Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
89 | public var kotlinOptionalStringVar: String? = "s"
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:88:12: warning: var 'kotlinOptionalUnsignedIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
| |- warning: var 'kotlinOptionalUnsignedIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalUnsignedIntVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalUnsignedIntVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 | public var kotlinOptionalStringVar: String? = "s"
90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:89:12: warning: var 'kotlinOptionalStringVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
89 | public var kotlinOptionalStringVar: String? = "s"
| |- warning: var 'kotlinOptionalStringVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalStringVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalStringVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:90:12: warning: var 'kotlinOptionalClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
89 | public var kotlinOptionalStringVar: String? = "s"
90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
| |- warning: var 'kotlinOptionalClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalClassVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalClassVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
92 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:91:12: warning: var 'kotlinOptionalSwiftClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
89 | public var kotlinOptionalStringVar: String? = "s"
90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
| |- warning: var 'kotlinOptionalSwiftClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalSwiftClassVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalSwiftClassVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 |
93 | // MARK: Global computed vars
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:126: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
124 | public class KotlinClass {
125 | public static let staticIntConstant = 1
126 | 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
127 | public static func staticFunc(string: String) -> String {
128 | return "kotlin" + string
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:378:12: warning: var 'kotlinClosure0Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
376 | // MARK: Closures
377 |
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
| |- warning: var 'kotlinClosure0Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinClosure0Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinClosure0Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:379:12: warning: var 'kotlinClosure1Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
377 |
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
| |- warning: var 'kotlinClosure1Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinClosure1Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinClosure1Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:380:12: warning: var 'kotlinClosure1PrimitivesVar' 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 kotlinClosure0Var: () -> Void = { print("original") }
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
| |- warning: var 'kotlinClosure1PrimitivesVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinClosure1PrimitivesVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinClosure1PrimitivesVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
382 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:381:12: warning: var 'kotlinClosure1OptionalsVar' 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 kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
| |- warning: var 'kotlinClosure1OptionalsVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinClosure1OptionalsVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinClosure1OptionalsVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
382 |
383 | // MARK: Containers
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:385: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
383 | // MARK: Containers
384 |
385 | 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
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:386: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
384 |
385 | public var kotlinIntArrayVar = [1, 2, 3]
386 | 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
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:387: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
385 | public var kotlinIntArrayVar = [1, 2, 3]
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
| |- 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
388 | public var kotlinIntStringTupleVar = (1, "s")
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:388: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
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
| |- 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
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
390 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:389: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
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
| |- 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
390 |
391 | // MARK: Functions
[187/198] Compiling SkipBridgeToSwiftSamples Samples.swift
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:25:12: warning: let 'kotlinClassConstant' is not concurrency-safe because non-'Sendable' type 'KotlinHelperClass' may have shared mutable state; this is an error in the Swift 6 language mode
23 | public let kotlinUnsignedIntConstant = UInt(3_000_000_000)
24 | public let kotlinStringConstant = "s"
25 | public let kotlinClassConstant = KotlinHelperClass()
| |- warning: let 'kotlinClassConstant' 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 'kotlinClassConstant' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | public let kotlinSwiftClassConstant = SwiftHelperClass()
27 |
:
161 | }
162 |
163 | public final class KotlinHelperClass: KotlinProtocol, KotlinGenericProtocol, KotlinUnsignedProtocol, Comparable, Identifiable {
| `- note: class 'KotlinHelperClass' does not conform to the 'Sendable' protocol
164 | public var id: String {
165 | return stringVar
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:26:12: warning: let 'kotlinSwiftClassConstant' is not concurrency-safe because non-'Sendable' type 'SwiftHelperClass' may have shared mutable state; this is an error in the Swift 6 language mode
24 | public let kotlinStringConstant = "s"
25 | public let kotlinClassConstant = KotlinHelperClass()
26 | public let kotlinSwiftClassConstant = SwiftHelperClass()
| `- warning: let 'kotlinSwiftClassConstant' is not concurrency-safe because non-'Sendable' type 'SwiftHelperClass' may have shared mutable state; this is an error in the Swift 6 language mode
27 |
28 | // MARK: Global optional constants
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesHelpers/Helpers.swift:3:14: note: class 'SwiftHelperClass' does not conform to the 'Sendable' protocol
1 | // Copyright 2024–2025 Skip
2 | // SPDX-License-Identifier: LGPL-3.0-only WITH LGPL-3.0-linking-exception
3 | public class SwiftHelperClass: SwiftProtocol {
| `- note: class 'SwiftHelperClass' does not conform to the 'Sendable' protocol
4 | public var id: String {
5 | return stringVar
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:6:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SkipBridgeToSwiftSamplesHelpers'
4 |
5 | import Foundation
6 | import SkipBridgeToSwiftSamplesHelpers
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SkipBridgeToSwiftSamplesHelpers'
7 |
8 | // MARK: Global constants
:
24 | public let kotlinStringConstant = "s"
25 | public let kotlinClassConstant = KotlinHelperClass()
26 | public let kotlinSwiftClassConstant = SwiftHelperClass()
| |- note: add '@MainActor' to make let 'kotlinSwiftClassConstant' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | // MARK: Global optional constants
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:45:12: warning: let 'kotlinOptionalClassConstant' is not concurrency-safe because non-'Sendable' type 'KotlinHelperClass?' may have shared mutable state; this is an error in the Swift 6 language mode
43 | public let kotlinOptionalUnsignedIntConstant: UInt? = UInt(3_000_000_000)
44 | public let kotlinOptionalStringConstant: String? = "s"
45 | public let kotlinOptionalClassConstant: KotlinHelperClass? = KotlinHelperClass()
| |- warning: let 'kotlinOptionalClassConstant' 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 'kotlinOptionalClassConstant' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 | public let kotlinOptionalSwiftClassConstant: SwiftHelperClass? = SwiftHelperClass()
47 |
:
161 | }
162 |
163 | public final class KotlinHelperClass: KotlinProtocol, KotlinGenericProtocol, KotlinUnsignedProtocol, Comparable, Identifiable {
| `- note: class 'KotlinHelperClass' does not conform to the 'Sendable' protocol
164 | public var id: String {
165 | return stringVar
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:46:12: warning: let 'kotlinOptionalSwiftClassConstant' is not concurrency-safe because non-'Sendable' type 'SwiftHelperClass?' may have shared mutable state; this is an error in the Swift 6 language mode
44 | public let kotlinOptionalStringConstant: String? = "s"
45 | public let kotlinOptionalClassConstant: KotlinHelperClass? = KotlinHelperClass()
46 | public let kotlinOptionalSwiftClassConstant: SwiftHelperClass? = SwiftHelperClass()
| |- warning: let 'kotlinOptionalSwiftClassConstant' 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 'kotlinOptionalSwiftClassConstant' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |
48 | // MARK: Global vars
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesHelpers/Helpers.swift:3:14: note: class 'SwiftHelperClass' does not conform to the 'Sendable' protocol
1 | // Copyright 2024–2025 Skip
2 | // SPDX-License-Identifier: LGPL-3.0-only WITH LGPL-3.0-linking-exception
3 | public class SwiftHelperClass: SwiftProtocol {
| `- note: class 'SwiftHelperClass' does not conform to the 'Sendable' protocol
4 | public var id: String {
5 | return stringVar
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:50:12: warning: var 'kotlinBoolVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
48 | // MARK: Global vars
49 |
50 | public var kotlinBoolVar = true
| |- warning: var 'kotlinBoolVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinBoolVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinBoolVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | // TODO: Char
52 | public var kotlinDoubleVar = 1.0
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:52:12: warning: var 'kotlinDoubleVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
50 | public var kotlinBoolVar = true
51 | // TODO: Char
52 | public var kotlinDoubleVar = 1.0
| |- warning: var 'kotlinDoubleVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinDoubleVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinDoubleVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | public var kotlinFloatVar = Float(2.0)
54 | public var kotlinInt8Var = Int8(3)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:53:12: warning: var 'kotlinFloatVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
51 | // TODO: Char
52 | public var kotlinDoubleVar = 1.0
53 | public var kotlinFloatVar = Float(2.0)
| |- warning: var 'kotlinFloatVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinFloatVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinFloatVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 | public var kotlinInt8Var = Int8(3)
55 | public var kotlinInt16Var = Int16(4)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:54:12: warning: var 'kotlinInt8Var' 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 kotlinDoubleVar = 1.0
53 | public var kotlinFloatVar = Float(2.0)
54 | public var kotlinInt8Var = Int8(3)
| |- warning: var 'kotlinInt8Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinInt8Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinInt8Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 | public var kotlinInt16Var = Int16(4)
56 | public var kotlinInt32Var = Int32(5)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:55:12: warning: var 'kotlinInt16Var' 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 kotlinFloatVar = Float(2.0)
54 | public var kotlinInt8Var = Int8(3)
55 | public var kotlinInt16Var = Int16(4)
| |- warning: var 'kotlinInt16Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinInt16Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinInt16Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 | public var kotlinInt32Var = Int32(5)
57 | public var kotlinInt64Var = Int64(6)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:56:12: warning: var 'kotlinInt32Var' 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 kotlinInt8Var = Int8(3)
55 | public var kotlinInt16Var = Int16(4)
56 | public var kotlinInt32Var = Int32(5)
| |- warning: var 'kotlinInt32Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinInt32Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinInt32Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | public var kotlinInt64Var = Int64(6)
58 | public var kotlinIntVar = 7
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:57:12: warning: var 'kotlinInt64Var' 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 kotlinInt16Var = Int16(4)
56 | public var kotlinInt32Var = Int32(5)
57 | public var kotlinInt64Var = Int64(6)
| |- warning: var 'kotlinInt64Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinInt64Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinInt64Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 | public var kotlinIntVar = 7
59 | public var kotlinUnsignedInt8Var = UInt8(200)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:58:12: warning: var 'kotlinIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
56 | public var kotlinInt32Var = Int32(5)
57 | public var kotlinInt64Var = Int64(6)
58 | public var kotlinIntVar = 7
| |- warning: var 'kotlinIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinIntVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinIntVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 | public var kotlinUnsignedInt8Var = UInt8(200)
60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:59:12: warning: var 'kotlinUnsignedInt8Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
57 | public var kotlinInt64Var = Int64(6)
58 | public var kotlinIntVar = 7
59 | public var kotlinUnsignedInt8Var = UInt8(200)
| |- warning: var 'kotlinUnsignedInt8Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinUnsignedInt8Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinUnsignedInt8Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:60:12: warning: var 'kotlinUnsignedInt16Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
58 | public var kotlinIntVar = 7
59 | public var kotlinUnsignedInt8Var = UInt8(200)
60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
| |- warning: var 'kotlinUnsignedInt16Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinUnsignedInt16Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinUnsignedInt16Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:61:12: warning: var 'kotlinUnsignedInt32Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
59 | public var kotlinUnsignedInt8Var = UInt8(200)
60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
| |- warning: var 'kotlinUnsignedInt32Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinUnsignedInt32Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinUnsignedInt32Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:62:12: warning: var 'kotlinUnsignedInt64Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
| |- warning: var 'kotlinUnsignedInt64Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinUnsignedInt64Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinUnsignedInt64Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
64 | public var kotlinStringVar = "s"
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:63:12: warning: var 'kotlinUnsignedIntVar' 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 kotlinUnsignedInt32Var = UInt32(3_000_000_000)
62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
| |- warning: var 'kotlinUnsignedIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinUnsignedIntVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinUnsignedIntVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 | public var kotlinStringVar = "s"
65 | public var kotlinNSNumberVar = NSNumber(value: 100)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:64:12: warning: var 'kotlinStringVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
64 | public var kotlinStringVar = "s"
| |- warning: var 'kotlinStringVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinStringVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinStringVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
65 | public var kotlinNSNumberVar = NSNumber(value: 100)
66 | public var kotlinClassVar = KotlinHelperClass()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:65:12: warning: var 'kotlinNSNumberVar' 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 kotlinUnsignedIntVar = UInt(3_000_000_000)
64 | public var kotlinStringVar = "s"
65 | public var kotlinNSNumberVar = NSNumber(value: 100)
| |- warning: var 'kotlinNSNumberVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinNSNumberVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinNSNumberVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 | public var kotlinClassVar = KotlinHelperClass()
67 | public var kotlinBaseClassVar = KotlinClass()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:66:12: warning: var 'kotlinClassVar' 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 kotlinStringVar = "s"
65 | public var kotlinNSNumberVar = NSNumber(value: 100)
66 | public var kotlinClassVar = KotlinHelperClass()
| |- warning: var 'kotlinClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinClassVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinClassVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 | public var kotlinBaseClassVar = KotlinClass()
68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:67:12: warning: var 'kotlinBaseClassVar' 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 kotlinNSNumberVar = NSNumber(value: 100)
66 | public var kotlinClassVar = KotlinHelperClass()
67 | public var kotlinBaseClassVar = KotlinClass()
| |- warning: var 'kotlinBaseClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinBaseClassVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinBaseClassVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:68:12: warning: var 'kotlinInnerClassVar' 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 kotlinClassVar = KotlinHelperClass()
67 | public var kotlinBaseClassVar = KotlinClass()
68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
| |- warning: var 'kotlinInnerClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinInnerClassVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinInnerClassVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
70 | public var kotlinAnyVar: Any = "a"
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:69:12: warning: var 'kotlinSwiftClassVar' 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 kotlinBaseClassVar = KotlinClass()
68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
| |- warning: var 'kotlinSwiftClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinSwiftClassVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinSwiftClassVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 | public var kotlinAnyVar: Any = "a"
71 | public var kotlinAnyHashableVar: AnyHashable = 1
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:70:12: warning: var 'kotlinAnyVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
70 | public var kotlinAnyVar: Any = "a"
| |- warning: var 'kotlinAnyVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinAnyVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinAnyVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | public var kotlinAnyHashableVar: AnyHashable = 1
72 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:71:12: warning: var 'kotlinAnyHashableVar' 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 kotlinSwiftClassVar = SwiftHelperClass()
70 | public var kotlinAnyVar: Any = "a"
71 | public var kotlinAnyHashableVar: AnyHashable = 1
| |- warning: var 'kotlinAnyHashableVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinAnyHashableVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinAnyHashableVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 | // MARK: Global optional vars
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:75:12: warning: var 'kotlinOptionalBoolVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
73 | // MARK: Global optional vars
74 |
75 | public var kotlinOptionalBoolVar: Bool? = true
| |- warning: var 'kotlinOptionalBoolVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalBoolVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalBoolVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 | // TODO: Optional char
77 | public var kotlinOptionalDoubleVar: Double? = 1.0
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:77:12: warning: var 'kotlinOptionalDoubleVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
75 | public var kotlinOptionalBoolVar: Bool? = true
76 | // TODO: Optional char
77 | public var kotlinOptionalDoubleVar: Double? = 1.0
| |- warning: var 'kotlinOptionalDoubleVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalDoubleVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalDoubleVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
79 | public var kotlinOptionalInt8Var: Int8? = nil
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:78:12: warning: var 'kotlinOptionalFloatVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
76 | // TODO: Optional char
77 | public var kotlinOptionalDoubleVar: Double? = 1.0
78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
| |- warning: var 'kotlinOptionalFloatVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalFloatVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalFloatVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 | public var kotlinOptionalInt8Var: Int8? = nil
80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:79:12: warning: var 'kotlinOptionalInt8Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
77 | public var kotlinOptionalDoubleVar: Double? = 1.0
78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
79 | public var kotlinOptionalInt8Var: Int8? = nil
| |- warning: var 'kotlinOptionalInt8Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalInt8Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalInt8Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:80:12: warning: var 'kotlinOptionalInt16Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
79 | public var kotlinOptionalInt8Var: Int8? = nil
80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
| |- warning: var 'kotlinOptionalInt16Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalInt16Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalInt16Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:81:12: warning: var 'kotlinOptionalInt32Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
79 | public var kotlinOptionalInt8Var: Int8? = nil
80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
| |- warning: var 'kotlinOptionalInt32Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalInt32Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalInt32Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
83 | public var kotlinOptionalIntVar: Int? = 6
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:82:12: warning: var 'kotlinOptionalInt64Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
| |- warning: var 'kotlinOptionalInt64Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalInt64Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalInt64Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
83 | public var kotlinOptionalIntVar: Int? = 6
84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:83:12: warning: var 'kotlinOptionalIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
83 | public var kotlinOptionalIntVar: Int? = 6
| |- warning: var 'kotlinOptionalIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalIntVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalIntVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:84:12: warning: var 'kotlinOptionalUnsignedInt8Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
83 | public var kotlinOptionalIntVar: Int? = 6
84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
| |- warning: var 'kotlinOptionalUnsignedInt8Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalUnsignedInt8Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalUnsignedInt8Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:85:12: warning: var 'kotlinOptionalUnsignedInt16Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
83 | public var kotlinOptionalIntVar: Int? = 6
84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
| |- warning: var 'kotlinOptionalUnsignedInt16Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalUnsignedInt16Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalUnsignedInt16Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:86:12: warning: var 'kotlinOptionalUnsignedInt32Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
| |- warning: var 'kotlinOptionalUnsignedInt32Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalUnsignedInt32Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalUnsignedInt32Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:87:12: warning: var 'kotlinOptionalUnsignedInt64Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
| |- warning: var 'kotlinOptionalUnsignedInt64Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalUnsignedInt64Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalUnsignedInt64Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
89 | public var kotlinOptionalStringVar: String? = "s"
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:88:12: warning: var 'kotlinOptionalUnsignedIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
| |- warning: var 'kotlinOptionalUnsignedIntVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalUnsignedIntVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalUnsignedIntVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 | public var kotlinOptionalStringVar: String? = "s"
90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:89:12: warning: var 'kotlinOptionalStringVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
89 | public var kotlinOptionalStringVar: String? = "s"
| |- warning: var 'kotlinOptionalStringVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalStringVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalStringVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:90:12: warning: var 'kotlinOptionalClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
89 | public var kotlinOptionalStringVar: String? = "s"
90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
| |- warning: var 'kotlinOptionalClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalClassVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalClassVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
92 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:91:12: warning: var 'kotlinOptionalSwiftClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
89 | public var kotlinOptionalStringVar: String? = "s"
90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
| |- warning: var 'kotlinOptionalSwiftClassVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinOptionalSwiftClassVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinOptionalSwiftClassVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 |
93 | // MARK: Global computed vars
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:126: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
124 | public class KotlinClass {
125 | public static let staticIntConstant = 1
126 | 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
127 | public static func staticFunc(string: String) -> String {
128 | return "kotlin" + string
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:378:12: warning: var 'kotlinClosure0Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
376 | // MARK: Closures
377 |
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
| |- warning: var 'kotlinClosure0Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinClosure0Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinClosure0Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:379:12: warning: var 'kotlinClosure1Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
377 |
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
| |- warning: var 'kotlinClosure1Var' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinClosure1Var' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinClosure1Var' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:380:12: warning: var 'kotlinClosure1PrimitivesVar' 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 kotlinClosure0Var: () -> Void = { print("original") }
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
| |- warning: var 'kotlinClosure1PrimitivesVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinClosure1PrimitivesVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinClosure1PrimitivesVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
382 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:381:12: warning: var 'kotlinClosure1OptionalsVar' 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 kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
| |- warning: var 'kotlinClosure1OptionalsVar' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'kotlinClosure1OptionalsVar' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'kotlinClosure1OptionalsVar' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
382 |
383 | // MARK: Containers
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:385: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
383 | // MARK: Containers
384 |
385 | 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
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:386: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
384 |
385 | public var kotlinIntArrayVar = [1, 2, 3]
386 | 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
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:387: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
385 | public var kotlinIntArrayVar = [1, 2, 3]
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
| |- 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
388 | public var kotlinIntStringTupleVar = (1, "s")
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:388: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
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
| |- 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
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
390 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:389: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
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
| |- 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
390 |
391 | // MARK: Functions
[187/199] Wrapping AST for SkipBridgeToKotlinSamples for debugging
[188/199] Write Objects.LinkFileList
[190/199] Wrapping AST for SkipBridgeToSwiftSamples for debugging
[191/199] Write Objects.LinkFileList
[192/199] Linking libSkipBridgeToKotlinSamples.so
[193/199] Linking libSkipBridgeToSwiftSamples.so
note: Skip 1.6.15: skipstone plugin to: /host/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SkipBridgeToSwiftSamplesTestsSupport/destination/skipstone/SkipBridgeToSwiftSamplesTestsSupport/src/main at 02:59:27
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/Skip/skip.yml: note: loading skip.yml from /host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/Skip/skip.yml
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Skip/skip.yml: note: SkipBridgeToSwiftSamples skip.yml config loaded (2 ms)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesHelpers/Skip/skip.yml: note: SkipBridgeToSwiftSamplesHelpers skip.yml config loaded (3 ms)
/host/spi-builder-workspace/Sources/SkipBridge/Skip/skip.yml: note: SkipBridge skip.yml config loaded (1266 ms)
/host/spi-builder-workspace/.build/checkouts/skip-lib/Sources/SkipLib/Skip/skip.yml: note: SkipLib skip.yml config loaded (20 ms)
/host/spi-builder-workspace/.build/checkouts/skip-unit/Sources/SkipUnit/Skip/skip.yml: note: SkipUnit skip.yml config loaded (990 ms)
/host/spi-builder-workspace/.build/checkouts/skip-foundation/Sources/SkipFoundation/Skip/skip.yml: note: SkipFoundation skip.yml config loaded (31 ms)
note: skip.yml aggregate created (2328 ms) for modules: ["SkipBridgeToSwiftSamplesTestsSupport", "SkipBridgeToSwiftSamples", "SkipBridgeToSwiftSamplesHelpers", "SkipBridge", "SkipLib", "SkipUnit", "SkipFoundation"]
/host/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SkipBridgeToSwiftSamples/destination/skipstone/SkipBridgeToSwiftSamples.skipcode.json: note: SkipBridgeToSwiftSamples.skipcode.json codebase (72 KB) loaded (30 ms) for SkipBridgeToSwiftSamples
/host/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SkipBridgeToSwiftSamplesHelpers/destination/skipstone/SkipBridgeToSwiftSamplesHelpers.skipcode.json: note: SkipBridgeToSwiftSamplesHelpers.skipcode.json codebase (6 KB) loaded (2 ms) for SkipBridgeToSwiftSamplesHelpers
/host/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SkipBridge/destination/skipstone/SkipBridge.skipcode.json: note: SkipBridge.skipcode.json codebase (38 KB) loaded (13 ms) for SkipBridge
/host/spi-builder-workspace/.build/plugins/outputs/skip-lib/SkipLib/destination/skipstone/SkipLib.skipcode.json: note: SkipLib.skipcode.json codebase (655 KB) loaded (204 ms) for SkipLib
/host/spi-builder-workspace/.build/plugins/outputs/skip-unit/SkipUnit/destination/skipstone/SkipUnit.skipcode.json: note: SkipUnit.skipcode.json codebase (10 KB) loaded (2 ms) for SkipUnit
/host/spi-builder-workspace/.build/plugins/outputs/skip-foundation/SkipFoundation/destination/skipstone/SkipFoundation.skipcode.json: note: SkipFoundation.skipcode.json codebase (1.3 MB) loaded (395 ms) for SkipFoundation
/host/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SkipBridgeToSwiftSamplesTestsSupport/destination/skipstone/SkipBridgeToSwiftSamplesTestsSupport/src/main/kotlin/skip/bridge/to/swift/samples/tests/support/TestsSupport.kt: note: SkipBridgeToSwiftSamplesTestsSupport/src/main/kotlin/skip/bridge/to/swift/samples/tests/support/TestsSupport.kt (28 KB) transpilation saved from TestsSupport.swift (28 KB) in 45 ms
/host/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SkipBridgeToSwiftSamplesTestsSupport/destination/skipstone/SkipBridgeToSwiftSamplesTestsSupport.skipcode.json: note: SkipBridgeToSwiftSamplesTestsSupport.skipcode.json (58 KB) codebase written
/host/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SkipBridgeToSwiftSamplesTestsSupport/destination/skipstone/SkipBridgeToSwiftSamplesTestsSupport/src/main/swift/Package.swift: note: SkipBridgeToSwiftSamplesTestsSupport/src/main/swift/Package.swift (5 KB) skippackage written
/host/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SkipBridgeToSwiftSamplesTestsSupport/destination/skipstone/gradle/wrapper/gradle-wrapper.properties: note: gradle/wrapper/gradle-wrapper.properties (80 bytes) gradle wrapper written
/host/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SkipBridgeToSwiftSamplesTestsSupport/destination/skipstone/SkipBridgeToSwiftSamplesTestsSupport/proguard-rules.pro: note: SkipBridgeToSwiftSamplesTestsSupport/proguard-rules.pro (383 bytes) proguard written
/host/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SkipBridgeToSwiftSamplesTestsSupport/destination/skipstone/SkipBridgeToSwiftSamplesTestsSupport/build.gradle.kts: note: SkipBridgeToSwiftSamplesTestsSupport/build.gradle.kts (6 KB) gradle project written
/host/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SkipBridgeToSwiftSamplesTestsSupport/destination/skipstone/gradle.properties: note: gradle.properties (78 bytes) gradle config written
/host/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SkipBridgeToSwiftSamplesTestsSupport/destination/skipstone/settings.gradle.kts: note: settings.gradle.kts (4 KB) gradle settings written
/host/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/SkipBridgeToSwiftSamplesTestsSupport/destination/skipstone/.SkipBridgeToSwiftSamplesTestsSupport.sourcehash: note: .SkipBridgeToSwiftSamplesTestsSupport.sourcehash (127 bytes) sourcehash written
[194/199] Skip SkipBridgeToSwiftSamplesTestsSupport
[195/199] Copying .SkipBridgeToSwiftSamplesTestsSupport.sourcehash
[197/202] Compiling SkipBridgeToSwiftSamplesTestsSupport TestsSupport.swift
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:131:5: warning: reference to var 'kotlinBoolVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
129 |
130 | public func testSupport_kotlinBoolVar(value: Bool) -> Bool {
131 | kotlinBoolVar = value
| `- warning: reference to var 'kotlinBoolVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
132 | return kotlinBoolVar
133 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:50:12: note: var declared here
48 | // MARK: Global vars
49 |
50 | public var kotlinBoolVar = true
| `- note: var declared here
51 | // TODO: Char
52 | public var kotlinDoubleVar = 1.0
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:132:12: warning: reference to var 'kotlinBoolVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
130 | public func testSupport_kotlinBoolVar(value: Bool) -> Bool {
131 | kotlinBoolVar = value
132 | return kotlinBoolVar
| `- warning: reference to var 'kotlinBoolVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
133 | }
134 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:50:12: note: var declared here
48 | // MARK: Global vars
49 |
50 | public var kotlinBoolVar = true
| `- note: var declared here
51 | // TODO: Char
52 | public var kotlinDoubleVar = 1.0
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:136:5: warning: reference to var 'kotlinDoubleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
134 |
135 | public func testSupport_kotlinDoubleVar(value: Double) -> Double {
136 | kotlinDoubleVar = value
| `- warning: reference to var 'kotlinDoubleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
137 | return kotlinDoubleVar
138 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:52:12: note: var declared here
50 | public var kotlinBoolVar = true
51 | // TODO: Char
52 | public var kotlinDoubleVar = 1.0
| `- note: var declared here
53 | public var kotlinFloatVar = Float(2.0)
54 | public var kotlinInt8Var = Int8(3)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:137:12: warning: reference to var 'kotlinDoubleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
135 | public func testSupport_kotlinDoubleVar(value: Double) -> Double {
136 | kotlinDoubleVar = value
137 | return kotlinDoubleVar
| `- warning: reference to var 'kotlinDoubleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
138 | }
139 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:52:12: note: var declared here
50 | public var kotlinBoolVar = true
51 | // TODO: Char
52 | public var kotlinDoubleVar = 1.0
| `- note: var declared here
53 | public var kotlinFloatVar = Float(2.0)
54 | public var kotlinInt8Var = Int8(3)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:141:5: warning: reference to var 'kotlinFloatVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
139 |
140 | public func testSupport_kotlinFloatVar(value: Float) -> Float {
141 | kotlinFloatVar = value
| `- warning: reference to var 'kotlinFloatVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
142 | return kotlinFloatVar
143 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:53:12: note: var declared here
51 | // TODO: Char
52 | public var kotlinDoubleVar = 1.0
53 | public var kotlinFloatVar = Float(2.0)
| `- note: var declared here
54 | public var kotlinInt8Var = Int8(3)
55 | public var kotlinInt16Var = Int16(4)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:142:12: warning: reference to var 'kotlinFloatVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
140 | public func testSupport_kotlinFloatVar(value: Float) -> Float {
141 | kotlinFloatVar = value
142 | return kotlinFloatVar
| `- warning: reference to var 'kotlinFloatVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
143 | }
144 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:53:12: note: var declared here
51 | // TODO: Char
52 | public var kotlinDoubleVar = 1.0
53 | public var kotlinFloatVar = Float(2.0)
| `- note: var declared here
54 | public var kotlinInt8Var = Int8(3)
55 | public var kotlinInt16Var = Int16(4)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:146:5: warning: reference to var 'kotlinInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
144 |
145 | public func testSupport_kotlinInt8Var(value: Int8) -> Int8 {
146 | kotlinInt8Var = value
| `- warning: reference to var 'kotlinInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
147 | return kotlinInt8Var
148 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:54:12: note: var declared here
52 | public var kotlinDoubleVar = 1.0
53 | public var kotlinFloatVar = Float(2.0)
54 | public var kotlinInt8Var = Int8(3)
| `- note: var declared here
55 | public var kotlinInt16Var = Int16(4)
56 | public var kotlinInt32Var = Int32(5)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:147:12: warning: reference to var 'kotlinInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
145 | public func testSupport_kotlinInt8Var(value: Int8) -> Int8 {
146 | kotlinInt8Var = value
147 | return kotlinInt8Var
| `- warning: reference to var 'kotlinInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
148 | }
149 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:54:12: note: var declared here
52 | public var kotlinDoubleVar = 1.0
53 | public var kotlinFloatVar = Float(2.0)
54 | public var kotlinInt8Var = Int8(3)
| `- note: var declared here
55 | public var kotlinInt16Var = Int16(4)
56 | public var kotlinInt32Var = Int32(5)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:151:5: warning: reference to var 'kotlinInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
149 |
150 | public func testSupport_kotlinInt16Var(value: Int16) -> Int16 {
151 | kotlinInt16Var = value
| `- warning: reference to var 'kotlinInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
152 | return kotlinInt16Var
153 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:55:12: note: var declared here
53 | public var kotlinFloatVar = Float(2.0)
54 | public var kotlinInt8Var = Int8(3)
55 | public var kotlinInt16Var = Int16(4)
| `- note: var declared here
56 | public var kotlinInt32Var = Int32(5)
57 | public var kotlinInt64Var = Int64(6)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:152:12: warning: reference to var 'kotlinInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
150 | public func testSupport_kotlinInt16Var(value: Int16) -> Int16 {
151 | kotlinInt16Var = value
152 | return kotlinInt16Var
| `- warning: reference to var 'kotlinInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
153 | }
154 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:55:12: note: var declared here
53 | public var kotlinFloatVar = Float(2.0)
54 | public var kotlinInt8Var = Int8(3)
55 | public var kotlinInt16Var = Int16(4)
| `- note: var declared here
56 | public var kotlinInt32Var = Int32(5)
57 | public var kotlinInt64Var = Int64(6)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:156:5: warning: reference to var 'kotlinInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
154 |
155 | public func testSupport_kotlinInt32Var(value: Int32) -> Int32 {
156 | kotlinInt32Var = value
| `- warning: reference to var 'kotlinInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
157 | return kotlinInt32Var
158 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:56:12: note: var declared here
54 | public var kotlinInt8Var = Int8(3)
55 | public var kotlinInt16Var = Int16(4)
56 | public var kotlinInt32Var = Int32(5)
| `- note: var declared here
57 | public var kotlinInt64Var = Int64(6)
58 | public var kotlinIntVar = 7
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:157:12: warning: reference to var 'kotlinInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
155 | public func testSupport_kotlinInt32Var(value: Int32) -> Int32 {
156 | kotlinInt32Var = value
157 | return kotlinInt32Var
| `- warning: reference to var 'kotlinInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
158 | }
159 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:56:12: note: var declared here
54 | public var kotlinInt8Var = Int8(3)
55 | public var kotlinInt16Var = Int16(4)
56 | public var kotlinInt32Var = Int32(5)
| `- note: var declared here
57 | public var kotlinInt64Var = Int64(6)
58 | public var kotlinIntVar = 7
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:161:5: warning: reference to var 'kotlinInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
159 |
160 | public func testSupport_kotlinInt64Var(value: Int64) -> Int64 {
161 | kotlinInt64Var = value
| `- warning: reference to var 'kotlinInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
162 | return kotlinInt64Var
163 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:57:12: note: var declared here
55 | public var kotlinInt16Var = Int16(4)
56 | public var kotlinInt32Var = Int32(5)
57 | public var kotlinInt64Var = Int64(6)
| `- note: var declared here
58 | public var kotlinIntVar = 7
59 | public var kotlinUnsignedInt8Var = UInt8(200)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:162:12: warning: reference to var 'kotlinInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
160 | public func testSupport_kotlinInt64Var(value: Int64) -> Int64 {
161 | kotlinInt64Var = value
162 | return kotlinInt64Var
| `- warning: reference to var 'kotlinInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
163 | }
164 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:57:12: note: var declared here
55 | public var kotlinInt16Var = Int16(4)
56 | public var kotlinInt32Var = Int32(5)
57 | public var kotlinInt64Var = Int64(6)
| `- note: var declared here
58 | public var kotlinIntVar = 7
59 | public var kotlinUnsignedInt8Var = UInt8(200)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:166:5: warning: reference to var 'kotlinIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
164 |
165 | public func testSupport_kotlinIntVar(value: Int) -> Int {
166 | kotlinIntVar = value
| `- warning: reference to var 'kotlinIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
167 | return kotlinIntVar
168 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:58:12: note: var declared here
56 | public var kotlinInt32Var = Int32(5)
57 | public var kotlinInt64Var = Int64(6)
58 | public var kotlinIntVar = 7
| `- note: var declared here
59 | public var kotlinUnsignedInt8Var = UInt8(200)
60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:167:12: warning: reference to var 'kotlinIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
165 | public func testSupport_kotlinIntVar(value: Int) -> Int {
166 | kotlinIntVar = value
167 | return kotlinIntVar
| `- warning: reference to var 'kotlinIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
168 | }
169 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:58:12: note: var declared here
56 | public var kotlinInt32Var = Int32(5)
57 | public var kotlinInt64Var = Int64(6)
58 | public var kotlinIntVar = 7
| `- note: var declared here
59 | public var kotlinUnsignedInt8Var = UInt8(200)
60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:171:5: warning: reference to var 'kotlinStringVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
169 |
170 | public func testSupport_kotlinStringVar(value: String) -> String {
171 | kotlinStringVar = value
| `- warning: reference to var 'kotlinStringVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
172 | return kotlinStringVar
173 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:64:12: note: var declared here
62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
64 | public var kotlinStringVar = "s"
| `- note: var declared here
65 | public var kotlinNSNumberVar = NSNumber(value: 100)
66 | public var kotlinClassVar = KotlinHelperClass()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:172:12: warning: reference to var 'kotlinStringVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
170 | public func testSupport_kotlinStringVar(value: String) -> String {
171 | kotlinStringVar = value
172 | return kotlinStringVar
| `- warning: reference to var 'kotlinStringVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
173 | }
174 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:64:12: note: var declared here
62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
64 | public var kotlinStringVar = "s"
| `- note: var declared here
65 | public var kotlinNSNumberVar = NSNumber(value: 100)
66 | public var kotlinClassVar = KotlinHelperClass()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:176:5: warning: reference to var 'kotlinNSNumberVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
174 |
175 | public func testSupport_kotlinNSNumberVar(value: NSNumber) -> NSNumber {
176 | kotlinNSNumberVar = value
| `- warning: reference to var 'kotlinNSNumberVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
177 | return kotlinNSNumberVar
178 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:65:12: note: var declared here
63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
64 | public var kotlinStringVar = "s"
65 | public var kotlinNSNumberVar = NSNumber(value: 100)
| `- note: var declared here
66 | public var kotlinClassVar = KotlinHelperClass()
67 | public var kotlinBaseClassVar = KotlinClass()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:177:12: warning: reference to var 'kotlinNSNumberVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
175 | public func testSupport_kotlinNSNumberVar(value: NSNumber) -> NSNumber {
176 | kotlinNSNumberVar = value
177 | return kotlinNSNumberVar
| `- warning: reference to var 'kotlinNSNumberVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
178 | }
179 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:65:12: note: var declared here
63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
64 | public var kotlinStringVar = "s"
65 | public var kotlinNSNumberVar = NSNumber(value: 100)
| `- note: var declared here
66 | public var kotlinClassVar = KotlinHelperClass()
67 | public var kotlinBaseClassVar = KotlinClass()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:181:5: warning: reference to var 'kotlinUnsignedInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
179 |
180 | public func testSupport_kotlinUnsignedInt8Var(value: UInt8) -> UInt8 {
181 | kotlinUnsignedInt8Var = value
| `- warning: reference to var 'kotlinUnsignedInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
182 | return kotlinUnsignedInt8Var
183 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:59:12: note: var declared here
57 | public var kotlinInt64Var = Int64(6)
58 | public var kotlinIntVar = 7
59 | public var kotlinUnsignedInt8Var = UInt8(200)
| `- note: var declared here
60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:182:12: warning: reference to var 'kotlinUnsignedInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
180 | public func testSupport_kotlinUnsignedInt8Var(value: UInt8) -> UInt8 {
181 | kotlinUnsignedInt8Var = value
182 | return kotlinUnsignedInt8Var
| `- warning: reference to var 'kotlinUnsignedInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
183 | }
184 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:59:12: note: var declared here
57 | public var kotlinInt64Var = Int64(6)
58 | public var kotlinIntVar = 7
59 | public var kotlinUnsignedInt8Var = UInt8(200)
| `- note: var declared here
60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:186:5: warning: reference to var 'kotlinUnsignedInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
184 |
185 | public func testSupport_kotlinUnsignedInt16Var(value: UInt16) -> UInt16 {
186 | kotlinUnsignedInt16Var = value
| `- warning: reference to var 'kotlinUnsignedInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
187 | return kotlinUnsignedInt16Var
188 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:60:12: note: var declared here
58 | public var kotlinIntVar = 7
59 | public var kotlinUnsignedInt8Var = UInt8(200)
60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
| `- note: var declared here
61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:187:12: warning: reference to var 'kotlinUnsignedInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
185 | public func testSupport_kotlinUnsignedInt16Var(value: UInt16) -> UInt16 {
186 | kotlinUnsignedInt16Var = value
187 | return kotlinUnsignedInt16Var
| `- warning: reference to var 'kotlinUnsignedInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
188 | }
189 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:60:12: note: var declared here
58 | public var kotlinIntVar = 7
59 | public var kotlinUnsignedInt8Var = UInt8(200)
60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
| `- note: var declared here
61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:191:5: warning: reference to var 'kotlinUnsignedInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
189 |
190 | public func testSupport_kotlinUnsignedInt32Var(value: UInt32) -> UInt32 {
191 | kotlinUnsignedInt32Var = value
| `- warning: reference to var 'kotlinUnsignedInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
192 | return kotlinUnsignedInt32Var
193 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:61:12: note: var declared here
59 | public var kotlinUnsignedInt8Var = UInt8(200)
60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
| `- note: var declared here
62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:192:12: warning: reference to var 'kotlinUnsignedInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
190 | public func testSupport_kotlinUnsignedInt32Var(value: UInt32) -> UInt32 {
191 | kotlinUnsignedInt32Var = value
192 | return kotlinUnsignedInt32Var
| `- warning: reference to var 'kotlinUnsignedInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
193 | }
194 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:61:12: note: var declared here
59 | public var kotlinUnsignedInt8Var = UInt8(200)
60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
| `- note: var declared here
62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:196:5: warning: reference to var 'kotlinUnsignedInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
194 |
195 | public func testSupport_kotlinUnsignedInt64Var(value: UInt64) -> UInt64 {
196 | kotlinUnsignedInt64Var = value
| `- warning: reference to var 'kotlinUnsignedInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
197 | return kotlinUnsignedInt64Var
198 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:62:12: note: var declared here
60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
| `- note: var declared here
63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
64 | public var kotlinStringVar = "s"
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:197:12: warning: reference to var 'kotlinUnsignedInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
195 | public func testSupport_kotlinUnsignedInt64Var(value: UInt64) -> UInt64 {
196 | kotlinUnsignedInt64Var = value
197 | return kotlinUnsignedInt64Var
| `- warning: reference to var 'kotlinUnsignedInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
198 | }
199 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:62:12: note: var declared here
60 | public var kotlinUnsignedInt16Var = UInt16(40_000)
61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
| `- note: var declared here
63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
64 | public var kotlinStringVar = "s"
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:201:5: warning: reference to var 'kotlinUnsignedIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
199 |
200 | public func testSupport_kotlinUnsignedIntVar(value: UInt) -> UInt {
201 | kotlinUnsignedIntVar = value
| `- warning: reference to var 'kotlinUnsignedIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
202 | return kotlinUnsignedIntVar
203 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:63:12: note: var declared here
61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
| `- note: var declared here
64 | public var kotlinStringVar = "s"
65 | public var kotlinNSNumberVar = NSNumber(value: 100)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:202:12: warning: reference to var 'kotlinUnsignedIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
200 | public func testSupport_kotlinUnsignedIntVar(value: UInt) -> UInt {
201 | kotlinUnsignedIntVar = value
202 | return kotlinUnsignedIntVar
| `- warning: reference to var 'kotlinUnsignedIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
203 | }
204 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:63:12: note: var declared here
61 | public var kotlinUnsignedInt32Var = UInt32(3_000_000_000)
62 | public var kotlinUnsignedInt64Var = UInt64(3_000_000_000)
63 | public var kotlinUnsignedIntVar = UInt(3_000_000_000)
| `- note: var declared here
64 | public var kotlinStringVar = "s"
65 | public var kotlinNSNumberVar = NSNumber(value: 100)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:208:5: warning: reference to var 'kotlinClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
206 | let helper = KotlinHelperClass()
207 | helper.stringVar = value
208 | kotlinClassVar = helper
| `- warning: reference to var 'kotlinClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
209 | return kotlinClassVar.stringVar
210 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:66:12: note: var declared here
64 | public var kotlinStringVar = "s"
65 | public var kotlinNSNumberVar = NSNumber(value: 100)
66 | public var kotlinClassVar = KotlinHelperClass()
| `- note: var declared here
67 | public var kotlinBaseClassVar = KotlinClass()
68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:209:12: warning: reference to var 'kotlinClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
207 | helper.stringVar = value
208 | kotlinClassVar = helper
209 | return kotlinClassVar.stringVar
| `- warning: reference to var 'kotlinClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
210 | }
211 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:66:12: note: var declared here
64 | public var kotlinStringVar = "s"
65 | public var kotlinNSNumberVar = NSNumber(value: 100)
66 | public var kotlinClassVar = KotlinHelperClass()
| `- note: var declared here
67 | public var kotlinBaseClassVar = KotlinClass()
68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:215:5: warning: reference to var 'kotlinInnerClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
213 | let inner = KotlinHelperClass.Inner()
214 | inner.intVar = value
215 | kotlinInnerClassVar = inner
| `- warning: reference to var 'kotlinInnerClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
216 | return kotlinInnerClassVar.intVar
217 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:68:12: note: var declared here
66 | public var kotlinClassVar = KotlinHelperClass()
67 | public var kotlinBaseClassVar = KotlinClass()
68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
| `- note: var declared here
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
70 | public var kotlinAnyVar: Any = "a"
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:216:12: warning: reference to var 'kotlinInnerClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
214 | inner.intVar = value
215 | kotlinInnerClassVar = inner
216 | return kotlinInnerClassVar.intVar
| `- warning: reference to var 'kotlinInnerClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
217 | }
218 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:68:12: note: var declared here
66 | public var kotlinClassVar = KotlinHelperClass()
67 | public var kotlinBaseClassVar = KotlinClass()
68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
| `- note: var declared here
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
70 | public var kotlinAnyVar: Any = "a"
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:222:5: warning: reference to var 'kotlinSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
220 | let helper = SwiftHelperClass()
221 | helper.stringVar = value
222 | kotlinSwiftClassVar = helper
| `- warning: reference to var 'kotlinSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
223 | return kotlinSwiftClassVar.stringVar
224 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:69:12: note: var declared here
67 | public var kotlinBaseClassVar = KotlinClass()
68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
| `- note: var declared here
70 | public var kotlinAnyVar: Any = "a"
71 | public var kotlinAnyHashableVar: AnyHashable = 1
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:223:12: warning: reference to var 'kotlinSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
221 | helper.stringVar = value
222 | kotlinSwiftClassVar = helper
223 | return kotlinSwiftClassVar.stringVar
| `- warning: reference to var 'kotlinSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
224 | }
225 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:69:12: note: var declared here
67 | public var kotlinBaseClassVar = KotlinClass()
68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
| `- note: var declared here
70 | public var kotlinAnyVar: Any = "a"
71 | public var kotlinAnyHashableVar: AnyHashable = 1
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:227:5: warning: reference to var 'kotlinAnyVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
225 |
226 | public func testSupport_kotlinAnyVar(value: Any) -> Any {
227 | kotlinAnyVar = value
| `- warning: reference to var 'kotlinAnyVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
228 | return kotlinAnyVar
229 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:70:12: note: var declared here
68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
70 | public var kotlinAnyVar: Any = "a"
| `- note: var declared here
71 | public var kotlinAnyHashableVar: AnyHashable = 1
72 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:228:12: warning: reference to var 'kotlinAnyVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
226 | public func testSupport_kotlinAnyVar(value: Any) -> Any {
227 | kotlinAnyVar = value
228 | return kotlinAnyVar
| `- warning: reference to var 'kotlinAnyVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
229 | }
230 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:70:12: note: var declared here
68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
70 | public var kotlinAnyVar: Any = "a"
| `- note: var declared here
71 | public var kotlinAnyHashableVar: AnyHashable = 1
72 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:234:5: warning: reference to var 'kotlinAnyVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
232 | let helper = KotlinHelperClass()
233 | helper.stringVar = value
234 | kotlinAnyVar = helper
| `- warning: reference to var 'kotlinAnyVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
235 | return (kotlinAnyVar as? KotlinHelperClass)?.stringVar
236 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:70:12: note: var declared here
68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
70 | public var kotlinAnyVar: Any = "a"
| `- note: var declared here
71 | public var kotlinAnyHashableVar: AnyHashable = 1
72 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:235:13: warning: reference to var 'kotlinAnyVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
233 | helper.stringVar = value
234 | kotlinAnyVar = helper
235 | return (kotlinAnyVar as? KotlinHelperClass)?.stringVar
| `- warning: reference to var 'kotlinAnyVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
236 | }
237 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:70:12: note: var declared here
68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
70 | public var kotlinAnyVar: Any = "a"
| `- note: var declared here
71 | public var kotlinAnyHashableVar: AnyHashable = 1
72 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:239:5: warning: reference to var 'kotlinAnyHashableVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
237 |
238 | public func testSupport_kotlinAnyHashableVar(value: AnyHashable) -> AnyHashable {
239 | kotlinAnyHashableVar = value
| `- warning: reference to var 'kotlinAnyHashableVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
240 | return kotlinAnyHashableVar
241 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:71:12: note: var declared here
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
70 | public var kotlinAnyVar: Any = "a"
71 | public var kotlinAnyHashableVar: AnyHashable = 1
| `- note: var declared here
72 |
73 | // MARK: Global optional vars
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:240:12: warning: reference to var 'kotlinAnyHashableVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
238 | public func testSupport_kotlinAnyHashableVar(value: AnyHashable) -> AnyHashable {
239 | kotlinAnyHashableVar = value
240 | return kotlinAnyHashableVar
| `- warning: reference to var 'kotlinAnyHashableVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
241 | }
242 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:71:12: note: var declared here
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
70 | public var kotlinAnyVar: Any = "a"
71 | public var kotlinAnyHashableVar: AnyHashable = 1
| `- note: var declared here
72 |
73 | // MARK: Global optional vars
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:246:5: warning: reference to var 'kotlinAnyHashableVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
244 | let helper = KotlinHelperClass()
245 | helper.stringVar = value
246 | kotlinAnyHashableVar = helper
| `- warning: reference to var 'kotlinAnyHashableVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
247 | return (kotlinAnyHashableVar as? KotlinHelperClass)?.stringVar
248 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:71:12: note: var declared here
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
70 | public var kotlinAnyVar: Any = "a"
71 | public var kotlinAnyHashableVar: AnyHashable = 1
| `- note: var declared here
72 |
73 | // MARK: Global optional vars
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:247:13: warning: reference to var 'kotlinAnyHashableVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
245 | helper.stringVar = value
246 | kotlinAnyHashableVar = helper
247 | return (kotlinAnyHashableVar as? KotlinHelperClass)?.stringVar
| `- warning: reference to var 'kotlinAnyHashableVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
248 | }
249 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:71:12: note: var declared here
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
70 | public var kotlinAnyVar: Any = "a"
71 | public var kotlinAnyHashableVar: AnyHashable = 1
| `- note: var declared here
72 |
73 | // MARK: Global optional vars
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:251:5: warning: reference to var 'kotlinOptionalBoolVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
249 |
250 | public func testSupport_kotlinOptionalBoolVar(value: Bool?) -> Bool? {
251 | kotlinOptionalBoolVar = value
| `- warning: reference to var 'kotlinOptionalBoolVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
252 | return kotlinOptionalBoolVar
253 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:75:12: note: var declared here
73 | // MARK: Global optional vars
74 |
75 | public var kotlinOptionalBoolVar: Bool? = true
| `- note: var declared here
76 | // TODO: Optional char
77 | public var kotlinOptionalDoubleVar: Double? = 1.0
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:252:12: warning: reference to var 'kotlinOptionalBoolVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
250 | public func testSupport_kotlinOptionalBoolVar(value: Bool?) -> Bool? {
251 | kotlinOptionalBoolVar = value
252 | return kotlinOptionalBoolVar
| `- warning: reference to var 'kotlinOptionalBoolVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
253 | }
254 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:75:12: note: var declared here
73 | // MARK: Global optional vars
74 |
75 | public var kotlinOptionalBoolVar: Bool? = true
| `- note: var declared here
76 | // TODO: Optional char
77 | public var kotlinOptionalDoubleVar: Double? = 1.0
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:256:5: warning: reference to var 'kotlinOptionalDoubleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
254 |
255 | public func testSupport_kotlinOptionalDoubleVar(value: Double?) -> Double? {
256 | kotlinOptionalDoubleVar = value
| `- warning: reference to var 'kotlinOptionalDoubleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
257 | return kotlinOptionalDoubleVar
258 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:77:12: note: var declared here
75 | public var kotlinOptionalBoolVar: Bool? = true
76 | // TODO: Optional char
77 | public var kotlinOptionalDoubleVar: Double? = 1.0
| `- note: var declared here
78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
79 | public var kotlinOptionalInt8Var: Int8? = nil
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:257:12: warning: reference to var 'kotlinOptionalDoubleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
255 | public func testSupport_kotlinOptionalDoubleVar(value: Double?) -> Double? {
256 | kotlinOptionalDoubleVar = value
257 | return kotlinOptionalDoubleVar
| `- warning: reference to var 'kotlinOptionalDoubleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
258 | }
259 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:77:12: note: var declared here
75 | public var kotlinOptionalBoolVar: Bool? = true
76 | // TODO: Optional char
77 | public var kotlinOptionalDoubleVar: Double? = 1.0
| `- note: var declared here
78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
79 | public var kotlinOptionalInt8Var: Int8? = nil
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:261:5: warning: reference to var 'kotlinOptionalFloatVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
259 |
260 | public func testSupport_kotlinOptionalFloatVar(value: Float?) -> Float? {
261 | kotlinOptionalFloatVar = value
| `- warning: reference to var 'kotlinOptionalFloatVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
262 | return kotlinOptionalFloatVar
263 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:78:12: note: var declared here
76 | // TODO: Optional char
77 | public var kotlinOptionalDoubleVar: Double? = 1.0
78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
| `- note: var declared here
79 | public var kotlinOptionalInt8Var: Int8? = nil
80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:262:12: warning: reference to var 'kotlinOptionalFloatVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
260 | public func testSupport_kotlinOptionalFloatVar(value: Float?) -> Float? {
261 | kotlinOptionalFloatVar = value
262 | return kotlinOptionalFloatVar
| `- warning: reference to var 'kotlinOptionalFloatVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
263 | }
264 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:78:12: note: var declared here
76 | // TODO: Optional char
77 | public var kotlinOptionalDoubleVar: Double? = 1.0
78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
| `- note: var declared here
79 | public var kotlinOptionalInt8Var: Int8? = nil
80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:266:5: warning: reference to var 'kotlinOptionalInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
264 |
265 | public func testSupport_kotlinOptionalInt8Var(value: Int8?) -> Int8? {
266 | kotlinOptionalInt8Var = value
| `- warning: reference to var 'kotlinOptionalInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
267 | return kotlinOptionalInt8Var
268 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:79:12: note: var declared here
77 | public var kotlinOptionalDoubleVar: Double? = 1.0
78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
79 | public var kotlinOptionalInt8Var: Int8? = nil
| `- note: var declared here
80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:267:12: warning: reference to var 'kotlinOptionalInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
265 | public func testSupport_kotlinOptionalInt8Var(value: Int8?) -> Int8? {
266 | kotlinOptionalInt8Var = value
267 | return kotlinOptionalInt8Var
| `- warning: reference to var 'kotlinOptionalInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
268 | }
269 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:79:12: note: var declared here
77 | public var kotlinOptionalDoubleVar: Double? = 1.0
78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
79 | public var kotlinOptionalInt8Var: Int8? = nil
| `- note: var declared here
80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:271:5: warning: reference to var 'kotlinOptionalInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
269 |
270 | public func testSupport_kotlinOptionalInt16Var(value: Int16?) -> Int16? {
271 | kotlinOptionalInt16Var = value
| `- warning: reference to var 'kotlinOptionalInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
272 | return kotlinOptionalInt16Var
273 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:80:12: note: var declared here
78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
79 | public var kotlinOptionalInt8Var: Int8? = nil
80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
| `- note: var declared here
81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:272:12: warning: reference to var 'kotlinOptionalInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
270 | public func testSupport_kotlinOptionalInt16Var(value: Int16?) -> Int16? {
271 | kotlinOptionalInt16Var = value
272 | return kotlinOptionalInt16Var
| `- warning: reference to var 'kotlinOptionalInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
273 | }
274 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:80:12: note: var declared here
78 | public var kotlinOptionalFloatVar: Float? = Float(2.0)
79 | public var kotlinOptionalInt8Var: Int8? = nil
80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
| `- note: var declared here
81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:276:5: warning: reference to var 'kotlinOptionalInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
274 |
275 | public func testSupport_kotlinOptionalInt32Var(value: Int32?) -> Int32? {
276 | kotlinOptionalInt32Var = value
| `- warning: reference to var 'kotlinOptionalInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
277 | return kotlinOptionalInt32Var
278 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:81:12: note: var declared here
79 | public var kotlinOptionalInt8Var: Int8? = nil
80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
| `- note: var declared here
82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
83 | public var kotlinOptionalIntVar: Int? = 6
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:277:12: warning: reference to var 'kotlinOptionalInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
275 | public func testSupport_kotlinOptionalInt32Var(value: Int32?) -> Int32? {
276 | kotlinOptionalInt32Var = value
277 | return kotlinOptionalInt32Var
| `- warning: reference to var 'kotlinOptionalInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
278 | }
279 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:81:12: note: var declared here
79 | public var kotlinOptionalInt8Var: Int8? = nil
80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
| `- note: var declared here
82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
83 | public var kotlinOptionalIntVar: Int? = 6
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:281:5: warning: reference to var 'kotlinOptionalInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
279 |
280 | public func testSupport_kotlinOptionalInt64Var(value: Int64?) -> Int64? {
281 | kotlinOptionalInt64Var = value
| `- warning: reference to var 'kotlinOptionalInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
282 | return kotlinOptionalInt64Var
283 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:82:12: note: var declared here
80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
| `- note: var declared here
83 | public var kotlinOptionalIntVar: Int? = 6
84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:282:12: warning: reference to var 'kotlinOptionalInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
280 | public func testSupport_kotlinOptionalInt64Var(value: Int64?) -> Int64? {
281 | kotlinOptionalInt64Var = value
282 | return kotlinOptionalInt64Var
| `- warning: reference to var 'kotlinOptionalInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
283 | }
284 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:82:12: note: var declared here
80 | public var kotlinOptionalInt16Var: Int16? = Int16(3)
81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
| `- note: var declared here
83 | public var kotlinOptionalIntVar: Int? = 6
84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:286:5: warning: reference to var 'kotlinOptionalIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
284 |
285 | public func testSupport_kotlinOptionalIntVar(value: Int?) -> Int? {
286 | kotlinOptionalIntVar = value
| `- warning: reference to var 'kotlinOptionalIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
287 | return kotlinOptionalIntVar
288 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:83:12: note: var declared here
81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
83 | public var kotlinOptionalIntVar: Int? = 6
| `- note: var declared here
84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:287:12: warning: reference to var 'kotlinOptionalIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
285 | public func testSupport_kotlinOptionalIntVar(value: Int?) -> Int? {
286 | kotlinOptionalIntVar = value
287 | return kotlinOptionalIntVar
| `- warning: reference to var 'kotlinOptionalIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
288 | }
289 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:83:12: note: var declared here
81 | public var kotlinOptionalInt32Var: Int32? = Int32(4)
82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
83 | public var kotlinOptionalIntVar: Int? = 6
| `- note: var declared here
84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:291:5: warning: reference to var 'kotlinOptionalUnsignedInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
289 |
290 | public func testSupport_kotlinOptionalUnsignedInt8Var(value: UInt8?) -> UInt8? {
291 | kotlinOptionalUnsignedInt8Var = value
| `- warning: reference to var 'kotlinOptionalUnsignedInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
292 | return kotlinOptionalUnsignedInt8Var
293 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:84:12: note: var declared here
82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
83 | public var kotlinOptionalIntVar: Int? = 6
84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
| `- note: var declared here
85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:292:12: warning: reference to var 'kotlinOptionalUnsignedInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
290 | public func testSupport_kotlinOptionalUnsignedInt8Var(value: UInt8?) -> UInt8? {
291 | kotlinOptionalUnsignedInt8Var = value
292 | return kotlinOptionalUnsignedInt8Var
| `- warning: reference to var 'kotlinOptionalUnsignedInt8Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
293 | }
294 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:84:12: note: var declared here
82 | public var kotlinOptionalInt64Var: Int64? = Int64(5)
83 | public var kotlinOptionalIntVar: Int? = 6
84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
| `- note: var declared here
85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:296:5: warning: reference to var 'kotlinOptionalUnsignedInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
294 |
295 | public func testSupport_kotlinOptionalUnsignedInt16Var(value: UInt16?) -> UInt16? {
296 | kotlinOptionalUnsignedInt16Var = value
| `- warning: reference to var 'kotlinOptionalUnsignedInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
297 | return kotlinOptionalUnsignedInt16Var
298 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:85:12: note: var declared here
83 | public var kotlinOptionalIntVar: Int? = 6
84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
| `- note: var declared here
86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:297:12: warning: reference to var 'kotlinOptionalUnsignedInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
295 | public func testSupport_kotlinOptionalUnsignedInt16Var(value: UInt16?) -> UInt16? {
296 | kotlinOptionalUnsignedInt16Var = value
297 | return kotlinOptionalUnsignedInt16Var
| `- warning: reference to var 'kotlinOptionalUnsignedInt16Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
298 | }
299 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:85:12: note: var declared here
83 | public var kotlinOptionalIntVar: Int? = 6
84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
| `- note: var declared here
86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:301:5: warning: reference to var 'kotlinOptionalUnsignedInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
299 |
300 | public func testSupport_kotlinOptionalUnsignedInt32Var(value: UInt32?) -> UInt32? {
301 | kotlinOptionalUnsignedInt32Var = value
| `- warning: reference to var 'kotlinOptionalUnsignedInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
302 | return kotlinOptionalUnsignedInt32Var
303 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:86:12: note: var declared here
84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
| `- note: var declared here
87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:302:12: warning: reference to var 'kotlinOptionalUnsignedInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
300 | public func testSupport_kotlinOptionalUnsignedInt32Var(value: UInt32?) -> UInt32? {
301 | kotlinOptionalUnsignedInt32Var = value
302 | return kotlinOptionalUnsignedInt32Var
| `- warning: reference to var 'kotlinOptionalUnsignedInt32Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
303 | }
304 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:86:12: note: var declared here
84 | public var kotlinOptionalUnsignedInt8Var: UInt8? = UInt8(200)
85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
| `- note: var declared here
87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:306:5: warning: reference to var 'kotlinOptionalUnsignedInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
304 |
305 | public func testSupport_kotlinOptionalUnsignedInt64Var(value: UInt64?) -> UInt64? {
306 | kotlinOptionalUnsignedInt64Var = value
| `- warning: reference to var 'kotlinOptionalUnsignedInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
307 | return kotlinOptionalUnsignedInt64Var
308 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:87:12: note: var declared here
85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
| `- note: var declared here
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
89 | public var kotlinOptionalStringVar: String? = "s"
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:307:12: warning: reference to var 'kotlinOptionalUnsignedInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
305 | public func testSupport_kotlinOptionalUnsignedInt64Var(value: UInt64?) -> UInt64? {
306 | kotlinOptionalUnsignedInt64Var = value
307 | return kotlinOptionalUnsignedInt64Var
| `- warning: reference to var 'kotlinOptionalUnsignedInt64Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
308 | }
309 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:87:12: note: var declared here
85 | public var kotlinOptionalUnsignedInt16Var: UInt16? = UInt16(40_000)
86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
| `- note: var declared here
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
89 | public var kotlinOptionalStringVar: String? = "s"
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:311:5: warning: reference to var 'kotlinOptionalUnsignedIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
309 |
310 | public func testSupport_kotlinOptionalUnsignedIntVar(value: UInt?) -> UInt? {
311 | kotlinOptionalUnsignedIntVar = value
| `- warning: reference to var 'kotlinOptionalUnsignedIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
312 | return kotlinOptionalUnsignedIntVar
313 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:88:12: note: var declared here
86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
| `- note: var declared here
89 | public var kotlinOptionalStringVar: String? = "s"
90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:312:12: warning: reference to var 'kotlinOptionalUnsignedIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
310 | public func testSupport_kotlinOptionalUnsignedIntVar(value: UInt?) -> UInt? {
311 | kotlinOptionalUnsignedIntVar = value
312 | return kotlinOptionalUnsignedIntVar
| `- warning: reference to var 'kotlinOptionalUnsignedIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
313 | }
314 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:88:12: note: var declared here
86 | public var kotlinOptionalUnsignedInt32Var: UInt32? = UInt32(3_000_000_000)
87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
| `- note: var declared here
89 | public var kotlinOptionalStringVar: String? = "s"
90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:316:5: warning: reference to var 'kotlinOptionalStringVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
314 |
315 | public func testSupport_kotlinOptionalStringVar(value: String?) -> String? {
316 | kotlinOptionalStringVar = value
| `- warning: reference to var 'kotlinOptionalStringVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
317 | return kotlinOptionalStringVar
318 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:89:12: note: var declared here
87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
89 | public var kotlinOptionalStringVar: String? = "s"
| `- note: var declared here
90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:317:12: warning: reference to var 'kotlinOptionalStringVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
315 | public func testSupport_kotlinOptionalStringVar(value: String?) -> String? {
316 | kotlinOptionalStringVar = value
317 | return kotlinOptionalStringVar
| `- warning: reference to var 'kotlinOptionalStringVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
318 | }
319 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:89:12: note: var declared here
87 | public var kotlinOptionalUnsignedInt64Var: UInt64? = UInt64(3_000_000_000)
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
89 | public var kotlinOptionalStringVar: String? = "s"
| `- note: var declared here
90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:324:9: warning: reference to var 'kotlinOptionalClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
322 | let helper = KotlinHelperClass()
323 | helper.stringVar = value
324 | kotlinOptionalClassVar = helper
| `- warning: reference to var 'kotlinOptionalClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
325 | } else {
326 | kotlinOptionalClassVar = nil
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:90:12: note: var declared here
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
89 | public var kotlinOptionalStringVar: String? = "s"
90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
| `- note: var declared here
91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
92 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:326:9: warning: reference to var 'kotlinOptionalClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
324 | kotlinOptionalClassVar = helper
325 | } else {
326 | kotlinOptionalClassVar = nil
| `- warning: reference to var 'kotlinOptionalClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
327 | }
328 | return kotlinOptionalClassVar?.stringVar
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:90:12: note: var declared here
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
89 | public var kotlinOptionalStringVar: String? = "s"
90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
| `- note: var declared here
91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
92 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:328:12: warning: reference to var 'kotlinOptionalClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
326 | kotlinOptionalClassVar = nil
327 | }
328 | return kotlinOptionalClassVar?.stringVar
| `- warning: reference to var 'kotlinOptionalClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
329 | }
330 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:90:12: note: var declared here
88 | public var kotlinOptionalUnsignedIntVar: UInt? = UInt(3_000_000_000)
89 | public var kotlinOptionalStringVar: String? = "s"
90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
| `- note: var declared here
91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
92 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:335:9: warning: reference to var 'kotlinOptionalSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
333 | let helper = SwiftHelperClass()
334 | helper.stringVar = value
335 | kotlinOptionalSwiftClassVar = helper
| `- warning: reference to var 'kotlinOptionalSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
336 | } else {
337 | kotlinOptionalSwiftClassVar = nil
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:91:12: note: var declared here
89 | public var kotlinOptionalStringVar: String? = "s"
90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
| `- note: var declared here
92 |
93 | // MARK: Global computed vars
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:337:9: warning: reference to var 'kotlinOptionalSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
335 | kotlinOptionalSwiftClassVar = helper
336 | } else {
337 | kotlinOptionalSwiftClassVar = nil
| `- warning: reference to var 'kotlinOptionalSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
338 | }
339 | return kotlinOptionalSwiftClassVar?.stringVar
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:91:12: note: var declared here
89 | public var kotlinOptionalStringVar: String? = "s"
90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
| `- note: var declared here
92 |
93 | // MARK: Global computed vars
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:339:12: warning: reference to var 'kotlinOptionalSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
337 | kotlinOptionalSwiftClassVar = nil
338 | }
339 | return kotlinOptionalSwiftClassVar?.stringVar
| `- warning: reference to var 'kotlinOptionalSwiftClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
340 | }
341 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:91:12: note: var declared here
89 | public var kotlinOptionalStringVar: String? = "s"
90 | public var kotlinOptionalClassVar: KotlinHelperClass? = KotlinHelperClass()
91 | public var kotlinOptionalSwiftClassVar: SwiftHelperClass? = SwiftHelperClass()
| `- note: var declared here
92 |
93 | // MARK: Global computed vars
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:396:17: warning: reference to class property 'staticIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
394 |
395 | public func testSupport_kotlinClassMemberStaticVar(value: Int) -> Int {
396 | KotlinClass.staticIntVar = 99
| `- warning: reference to class property 'staticIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
397 | return KotlinClass.staticIntVar
398 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:126:23: note: class property declared here
124 | public class KotlinClass {
125 | public static let staticIntConstant = 1
126 | public static var staticIntVar = 1
| `- note: class property declared here
127 | public static func staticFunc(string: String) -> String {
128 | return "kotlin" + string
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:397:24: warning: reference to class property 'staticIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
395 | public func testSupport_kotlinClassMemberStaticVar(value: Int) -> Int {
396 | KotlinClass.staticIntVar = 99
397 | return KotlinClass.staticIntVar
| `- warning: reference to class property 'staticIntVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
398 | }
399 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:126:23: note: class property declared here
124 | public class KotlinClass {
125 | public static let staticIntConstant = 1
126 | public static var staticIntVar = 1
| `- note: class property declared here
127 | public static func staticFunc(string: String) -> String {
128 | return "kotlin" + string
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:438:5: warning: reference to var 'kotlinBaseClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
436 | }
437 |
438 | kotlinBaseClassVar = sub
| `- warning: reference to var 'kotlinBaseClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
439 | kotlinBaseClassVar.intVar = 101
440 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:67:12: note: var declared here
65 | public var kotlinNSNumberVar = NSNumber(value: 100)
66 | public var kotlinClassVar = KotlinHelperClass()
67 | public var kotlinBaseClassVar = KotlinClass()
| `- note: var declared here
68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:439:5: warning: reference to var 'kotlinBaseClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
437 |
438 | kotlinBaseClassVar = sub
439 | kotlinBaseClassVar.intVar = 101
| `- warning: reference to var 'kotlinBaseClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
440 |
441 | let sub2 = kotlinBaseClassVar as? KotlinSubclass
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:67:12: note: var declared here
65 | public var kotlinNSNumberVar = NSNumber(value: 100)
66 | public var kotlinClassVar = KotlinHelperClass()
67 | public var kotlinBaseClassVar = KotlinClass()
| `- note: var declared here
68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:441:16: warning: reference to var 'kotlinBaseClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
439 | kotlinBaseClassVar.intVar = 101
440 |
441 | let sub2 = kotlinBaseClassVar as? KotlinSubclass
| `- warning: reference to var 'kotlinBaseClassVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
442 | guard let sub2 else {
443 | return "sub2 != nil"
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:67:12: note: var declared here
65 | public var kotlinNSNumberVar = NSNumber(value: 100)
66 | public var kotlinClassVar = KotlinHelperClass()
67 | public var kotlinBaseClassVar = KotlinClass()
| `- note: var declared here
68 | public var kotlinInnerClassVar = KotlinHelperClass.Inner()
69 | public var kotlinSwiftClassVar = SwiftHelperClass()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:794:5: warning: reference to var 'kotlinClosure0Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
792 |
793 | public func testSupport_kotlinClosure0Var() {
794 | kotlinClosure0Var()
| `- warning: reference to var 'kotlinClosure0Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
795 | kotlinClosure0Var = { print("reassigned") }
796 | kotlinClosure0Var()
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:378:12: note: var declared here
376 | // MARK: Closures
377 |
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
| `- note: var declared here
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:795:5: warning: reference to var 'kotlinClosure0Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
793 | public func testSupport_kotlinClosure0Var() {
794 | kotlinClosure0Var()
795 | kotlinClosure0Var = { print("reassigned") }
| `- warning: reference to var 'kotlinClosure0Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
796 | kotlinClosure0Var()
797 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:378:12: note: var declared here
376 | // MARK: Closures
377 |
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
| `- note: var declared here
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:796:5: warning: reference to var 'kotlinClosure0Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
794 | kotlinClosure0Var()
795 | kotlinClosure0Var = { print("reassigned") }
796 | kotlinClosure0Var()
| `- warning: reference to var 'kotlinClosure0Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
797 | }
798 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:378:12: note: var declared here
376 | // MARK: Closures
377 |
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
| `- note: var declared here
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:800:14: warning: reference to var 'kotlinClosure1Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
798 |
799 | public func testSupport_kotlinClosure1Var(value: Int) -> String {
800 | let s1 = kotlinClosure1Var(value)
| `- warning: reference to var 'kotlinClosure1Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
801 | kotlinClosure1Var = { i in "value = \(i)" }
802 | let s2 = kotlinClosure1Var(value)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:379:12: note: var declared here
377 |
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
| `- note: var declared here
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:801:5: warning: reference to var 'kotlinClosure1Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
799 | public func testSupport_kotlinClosure1Var(value: Int) -> String {
800 | let s1 = kotlinClosure1Var(value)
801 | kotlinClosure1Var = { i in "value = \(i)" }
| `- warning: reference to var 'kotlinClosure1Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
802 | let s2 = kotlinClosure1Var(value)
803 | return s1 == s2 ? s1 : s1 + "/" + s2
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:379:12: note: var declared here
377 |
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
| `- note: var declared here
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:802:14: warning: reference to var 'kotlinClosure1Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
800 | let s1 = kotlinClosure1Var(value)
801 | kotlinClosure1Var = { i in "value = \(i)" }
802 | let s2 = kotlinClosure1Var(value)
| `- warning: reference to var 'kotlinClosure1Var' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
803 | return s1 == s2 ? s1 : s1 + "/" + s2
804 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:379:12: note: var declared here
377 |
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
| `- note: var declared here
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:807:14: warning: reference to var 'kotlinClosure1PrimitivesVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
805 |
806 | public func testSupport_kotlinClosure1PrimitivesVar(value: Int64) -> Int {
807 | let i1 = kotlinClosure1PrimitivesVar(value)
| `- warning: reference to var 'kotlinClosure1PrimitivesVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
808 | kotlinClosure1PrimitivesVar = { l in Int(l / 1000) }
809 | let i2 = kotlinClosure1PrimitivesVar(value)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:380:12: note: var declared here
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
| `- note: var declared here
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
382 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:808:5: warning: reference to var 'kotlinClosure1PrimitivesVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
806 | public func testSupport_kotlinClosure1PrimitivesVar(value: Int64) -> Int {
807 | let i1 = kotlinClosure1PrimitivesVar(value)
808 | kotlinClosure1PrimitivesVar = { l in Int(l / 1000) }
| `- warning: reference to var 'kotlinClosure1PrimitivesVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
809 | let i2 = kotlinClosure1PrimitivesVar(value)
810 | return i1 == i2 ? i1 : i1 * 10000 + i2
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:380:12: note: var declared here
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
| `- note: var declared here
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
382 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:809:14: warning: reference to var 'kotlinClosure1PrimitivesVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
807 | let i1 = kotlinClosure1PrimitivesVar(value)
808 | kotlinClosure1PrimitivesVar = { l in Int(l / 1000) }
809 | let i2 = kotlinClosure1PrimitivesVar(value)
| `- warning: reference to var 'kotlinClosure1PrimitivesVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
810 | return i1 == i2 ? i1 : i1 * 10000 + i2
811 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:380:12: note: var declared here
378 | public var kotlinClosure0Var: () -> Void = { print("original") }
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
| `- note: var declared here
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
382 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:814:14: warning: reference to var 'kotlinClosure1OptionalsVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
812 |
813 | public func testSupport_kotlinClosure1OptionalsVar(value: String?) -> Int? {
814 | let i1 = kotlinClosure1OptionalsVar(value)
| `- warning: reference to var 'kotlinClosure1OptionalsVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
815 | kotlinClosure1OptionalsVar = { s in s?.count }
816 | let i2 = kotlinClosure1OptionalsVar(value)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:381:12: note: var declared here
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
| `- note: var declared here
382 |
383 | // MARK: Containers
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:815:5: warning: reference to var 'kotlinClosure1OptionalsVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
813 | public func testSupport_kotlinClosure1OptionalsVar(value: String?) -> Int? {
814 | let i1 = kotlinClosure1OptionalsVar(value)
815 | kotlinClosure1OptionalsVar = { s in s?.count }
| `- warning: reference to var 'kotlinClosure1OptionalsVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
816 | let i2 = kotlinClosure1OptionalsVar(value)
817 | return i1 == i2 ? i1 : (i1 ?? 0) * 10000 + (i2 ?? 0)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:381:12: note: var declared here
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
| `- note: var declared here
382 |
383 | // MARK: Containers
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:816:14: warning: reference to var 'kotlinClosure1OptionalsVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
814 | let i1 = kotlinClosure1OptionalsVar(value)
815 | kotlinClosure1OptionalsVar = { s in s?.count }
816 | let i2 = kotlinClosure1OptionalsVar(value)
| `- warning: reference to var 'kotlinClosure1OptionalsVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
817 | return i1 == i2 ? i1 : (i1 ?? 0) * 10000 + (i2 ?? 0)
818 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:381:12: note: var declared here
379 | public var kotlinClosure1Var: (Int) -> String = { i in "value = \(i)" }
380 | public var kotlinClosure1PrimitivesVar: (Int64) -> Int = { l in Int(l / 1000) }
381 | public var kotlinClosure1OptionalsVar: (String?) -> Int? = { s in s?.count }
| `- note: var declared here
382 |
383 | // MARK: Containers
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:825:5: warning: reference to var 'kotlinIntArrayVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
823 |
824 | public func testSupport_kotlinIntArrayVar(value: [Int]) -> [Int] {
825 | kotlinIntArrayVar = value
| `- warning: reference to var 'kotlinIntArrayVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
826 | return kotlinIntArrayVar
827 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:385:12: note: var declared here
383 | // MARK: Containers
384 |
385 | public var kotlinIntArrayVar = [1, 2, 3]
| `- note: var declared here
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:826:12: warning: reference to var 'kotlinIntArrayVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
824 | public func testSupport_kotlinIntArrayVar(value: [Int]) -> [Int] {
825 | kotlinIntArrayVar = value
826 | return kotlinIntArrayVar
| `- warning: reference to var 'kotlinIntArrayVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
827 | }
828 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:385:12: note: var declared here
383 | // MARK: Containers
384 |
385 | public var kotlinIntArrayVar = [1, 2, 3]
| `- note: var declared here
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:830:5: warning: reference to var 'kotlinStringSetVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
828 |
829 | public func testSupport_kotlinStringSetVar(value: Set<String>) -> Set<String> {
830 | kotlinStringSetVar = value
| `- warning: reference to var 'kotlinStringSetVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
831 | return kotlinStringSetVar
832 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:386:12: note: var declared here
384 |
385 | public var kotlinIntArrayVar = [1, 2, 3]
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
| `- note: var declared here
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:831:12: warning: reference to var 'kotlinStringSetVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
829 | public func testSupport_kotlinStringSetVar(value: Set<String>) -> Set<String> {
830 | kotlinStringSetVar = value
831 | return kotlinStringSetVar
| `- warning: reference to var 'kotlinStringSetVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
832 | }
833 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:386:12: note: var declared here
384 |
385 | public var kotlinIntArrayVar = [1, 2, 3]
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
| `- note: var declared here
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:835:5: warning: reference to var 'kotlinIntStringDictionaryVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
833 |
834 | public func testSupport_kotlinIntStringDictionaryVar(value: [Int: String]) -> [Int: String] {
835 | kotlinIntStringDictionaryVar = value
| `- warning: reference to var 'kotlinIntStringDictionaryVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
836 | return kotlinIntStringDictionaryVar
837 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:387:12: note: var declared here
385 | public var kotlinIntArrayVar = [1, 2, 3]
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
| `- note: var declared here
388 | public var kotlinIntStringTupleVar = (1, "s")
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:836:12: warning: reference to var 'kotlinIntStringDictionaryVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
834 | public func testSupport_kotlinIntStringDictionaryVar(value: [Int: String]) -> [Int: String] {
835 | kotlinIntStringDictionaryVar = value
836 | return kotlinIntStringDictionaryVar
| `- warning: reference to var 'kotlinIntStringDictionaryVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
837 | }
838 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:387:12: note: var declared here
385 | public var kotlinIntArrayVar = [1, 2, 3]
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
| `- note: var declared here
388 | public var kotlinIntStringTupleVar = (1, "s")
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:840:5: warning: reference to var 'kotlinIntStringTupleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
838 |
839 | public func testSupport_kotlinIntStringTupleVar(value: (Int, String)) -> (Int, String) {
840 | kotlinIntStringTupleVar = value
| `- warning: reference to var 'kotlinIntStringTupleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
841 | return kotlinIntStringTupleVar
842 | }
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:388:12: note: var declared here
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
| `- note: var declared here
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
390 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:841:12: warning: reference to var 'kotlinIntStringTupleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
839 | public func testSupport_kotlinIntStringTupleVar(value: (Int, String)) -> (Int, String) {
840 | kotlinIntStringTupleVar = value
841 | return kotlinIntStringTupleVar
| `- warning: reference to var 'kotlinIntStringTupleVar' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
842 | }
843 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:388:12: note: var declared here
386 | public var kotlinStringSetVar: Set<String> = ["a", "b", "c"]
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
| `- note: var declared here
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
390 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:846:9: warning: reference to var 'kotlinIntErrorResult' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
844 | public func testSupport_kotlinIntErrorResultVar(value: Int?) -> Int? {
845 | if let value {
846 | kotlinIntErrorResult = .success(value)
| `- warning: reference to var 'kotlinIntErrorResult' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
847 | } else {
848 | kotlinIntErrorResult = .failure(KotlinError())
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:389:12: note: var declared here
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
| `- note: var declared here
390 |
391 | // MARK: Functions
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:848:9: warning: reference to var 'kotlinIntErrorResult' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
846 | kotlinIntErrorResult = .success(value)
847 | } else {
848 | kotlinIntErrorResult = .failure(KotlinError())
| `- warning: reference to var 'kotlinIntErrorResult' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
849 | }
850 | switch kotlinIntErrorResult {
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:389:12: note: var declared here
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
| `- note: var declared here
390 |
391 | // MARK: Functions
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:850:12: warning: reference to var 'kotlinIntErrorResult' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
848 | kotlinIntErrorResult = .failure(KotlinError())
849 | }
850 | switch kotlinIntErrorResult {
| `- warning: reference to var 'kotlinIntErrorResult' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
851 | case .success(let ret):
852 | return ret
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamples/Samples.swift:389:12: note: var declared here
387 | public var kotlinIntStringDictionaryVar = [1: "a", 2: "b", 3: "c"]
388 | public var kotlinIntStringTupleVar = (1, "s")
389 | public var kotlinIntErrorResult: Result<Int, KotlinError> = .success(1)
| `- note: var declared here
390 |
391 | // MARK: Functions
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:538:16: warning: will never be executed
535 | return "s1.intVar == 2"
536 | }
537 | guard s2.intVar == 3 else {
| `- note: condition always evaluates to true
538 | return "s2.intVar == 3"
| `- warning: will never be executed
539 | }
540 |
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:558:16: warning: will never be executed
555 |
556 | s1.intVar = 3
557 | guard s1.intVar == 3 else {
| `- note: condition always evaluates to true
558 | return "s1.intVar == 3"
| `- warning: will never be executed
559 | }
560 | guard obj.swiftStructVar.intVar == 2 else {
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:568:16: warning: will never be executed
565 | var s2 = obj.swiftStructVar
566 | s2.intVar = 100
567 | guard s1.intVar == 3 else {
| `- note: condition always evaluates to true
568 | return "s1.intVar == 3"
| `- warning: will never be executed
569 | }
570 | guard s2.intVar == 100 else {
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:571:16: warning: will never be executed
568 | return "s1.intVar == 3"
569 | }
570 | guard s2.intVar == 100 else {
| `- note: condition always evaluates to true
571 | return "s2.intVar == 100"
| `- warning: will never be executed
572 | }
573 | guard obj.swiftStructVar.intVar == 99 else {
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:586:16: warning: will never be executed
583 |
584 | s1.intVar = 3
585 | guard s1.intVar == 3 else {
| `- note: condition always evaluates to true
586 | return "s1.intVar == 3"
| `- warning: will never be executed
587 | }
588 | guard obj.kotlinStructVar.intVar == 2 else {
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:596:16: warning: will never be executed
593 | var s2 = obj.kotlinStructVar
594 | s2.intVar = 100
595 | guard s1.intVar == 3 else {
| `- note: condition always evaluates to true
596 | return "s1.intVar == 3"
| `- warning: will never be executed
597 | }
598 | guard s2.intVar == 100 else {
/host/spi-builder-workspace/Sources/SkipBridgeToSwiftSamplesTestsSupport/TestsSupport.swift:599:16: warning: will never be executed
596 | return "s1.intVar == 3"
597 | }
598 | guard s2.intVar == 100 else {
| `- note: condition always evaluates to true
599 | return "s2.intVar == 100"
| `- warning: will never be executed
600 | }
601 | guard obj.kotlinStructVar.intVar == 99 else {
[198/202] Compiling SkipBridgeToSwiftSamplesTestsSupport resource_bundle_accessor.swift
[199/202] Emitting module SkipBridgeToSwiftSamplesTestsSupport
[200/203] Wrapping AST for SkipBridgeToSwiftSamplesTestsSupport for debugging
[201/203] Write Objects.LinkFileList
[202/203] Linking libSkipBridgeToSwiftSamplesTestsSupport.so
Build complete! (68.85s)
Build complete.
{
"dependencies" : [
{
"identity" : "skip",
"requirement" : {
"range" : [
{
"lower_bound" : "1.6.8",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://source.skip.tools/skip.git"
},
{
"identity" : "skip-lib",
"requirement" : {
"range" : [
{
"lower_bound" : "1.3.7",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://source.skip.tools/skip-lib.git"
},
{
"identity" : "skip-foundation",
"requirement" : {
"range" : [
{
"lower_bound" : "1.3.9",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://source.skip.tools/skip-foundation.git"
},
{
"identity" : "swift-jni",
"requirement" : {
"range" : [
{
"lower_bound" : "0.3.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://source.skip.tools/swift-jni.git"
}
],
"manifest_display_name" : "skip-bridge",
"name" : "skip-bridge",
"path" : "/host/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"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:99ea6d26ace67c023f359493a2ac553a612b92a7f2dee009657225f46f43aa0e
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.