Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ab7b4292982e3ae7707d74b46a5cda4e97e76b3b
/
.
/
kotlin-native
/
backend.native
/
tests
/
compilerChecks
/
t49.kt
blob: 2188c38b023284d3ab94451c7e4b73d85bbc7cfe [
file
] [
log
] [
blame
]
import
kotlin
.
native
.
concurrent
.*
fun foo
(
x
:
Int
)
{
val worker
=
Worker
.
start
()
worker
.
execute
(
TransferMode
.
SAFE
,
{
"zzz"
})
{
s
->
s
+
x
.
toString
()
}
}