08bc0a6bd0
^KT-61564
13 lines
265 B
Kotlin
Vendored
13 lines
265 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
import kotlin.native.concurrent.*
|
|
|
|
class Z(val x: Int) {
|
|
fun bar(s: String) = s + x.toString()
|
|
}
|
|
|
|
@OptIn(ObsoleteWorkersApi::class)
|
|
fun foo(x: Int) {
|
|
val worker = Worker.start()
|
|
worker.execute(TransferMode.SAFE, { "zzz" }, Z(x)::bar)
|
|
}
|