1c24f994db
Very trivial implementation of CExport test infrastructure based on work from LLDB tests and ObjCExport tests.
8 lines
137 B
Kotlin
Vendored
8 lines
137 B
Kotlin
Vendored
@file:OptIn(kotlin.experimental.ExperimentalNativeApi::class)
|
|
|
|
import kotlin.native.CName
|
|
|
|
@CName("foo")
|
|
fun foo(): Int {
|
|
return 42
|
|
} |