Files
kotlin-fork/native/native.tests/testData/CExport/smoke0/main.kt
T
Sergey Bogolepov 1c24f994db [Native][tests] Initial support for CExport in the new test infra
Very trivial implementation of CExport test infrastructure based on
work from LLDB tests and ObjCExport tests.
2024-01-15 11:18:28 +00:00

8 lines
137 B
Kotlin
Vendored

@file:OptIn(kotlin.experimental.ExperimentalNativeApi::class)
import kotlin.native.CName
@CName("foo")
fun foo(): Int {
return 42
}