Files
kotlin-fork/compiler/testData/diagnostics/nativeTests/specialBackendChecks/concurrent/t50.kt
T
2024-01-09 14:17:47 +00:00

16 lines
296 B
Kotlin
Vendored

// FIR_IDENTICAL
@file:OptIn(ObsoleteWorkersApi::class)
import kotlin.native.concurrent.*
class Z(val x: Int) {
fun bar(s: String) = s + x.toString()
}
class Q(x: Int) {
init {
val worker = Worker.start()
worker.execute(TransferMode.SAFE, { "zzz" }, Z(x)::bar)
}
}