8f12bf6cc8
^KT-61564
12 lines
274 B
Kotlin
Vendored
12 lines
274 B
Kotlin
Vendored
import kotlinx.cinterop.*
|
|
import kotlinx.cinterop.internal.*
|
|
|
|
@CStruct(spelling = "struct { }") class Z constructor(rawPtr: NativePtr) : CStructVar(rawPtr) {
|
|
val x: Pair<Int, Int>? = null
|
|
@CStruct.MemberAt(offset = 0L) get
|
|
}
|
|
|
|
fun foo(z: Z) = z.x
|
|
|
|
fun main() { }
|