Files
kotlin-fork/compiler/testData/diagnostics/nativeTests/specialBackendChecks/cInterop/t8.kt
T
2024-01-09 14:17:47 +00:00

10 lines
170 B
Kotlin
Vendored

// FIR_IDENTICAL
import kotlinx.cinterop.*
fun foo(f: Function0<*>) = f
@OptIn(kotlinx.cinterop.ExperimentalForeignApi::class)
fun bar() {
staticCFunction(::foo)
}