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