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

11 lines
187 B
Kotlin
Vendored

// FIR_IDENTICAL
import kotlinx.cinterop.*
@OptIn(kotlinx.cinterop.ExperimentalForeignApi::class)
fun <T: CVariable> bar() {
fun foo(x: CValue<T>) = x
staticCFunction(::foo)
}