08bc0a6bd0
^KT-61564
12 lines
220 B
Kotlin
Vendored
12 lines
220 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
@file:OptIn(kotlinx.cinterop.ExperimentalForeignApi::class)
|
|
import kotlinx.cinterop.*
|
|
|
|
class Z(rawPtr: NativePtr): CStructVar(rawPtr)
|
|
|
|
fun foo(x: CValue<Z>) = x
|
|
|
|
fun bar() {
|
|
staticCFunction(::foo)
|
|
}
|