What does this error mean? ```Compilation failed: ...
# kotlin-native
m
What does this error mean?
Copy code
Compilation failed: Internal compiler error: native variable class deserialized class CPrimitiveVar must have the companion object
at /home/mart/git/experiments/martmists-engine/src/linuxMain/kotlin/com/mewsic/engine/core/linux/dbus.kt (235:204)
CALL 'public final fun typeOf <T> (): kotlinx.cinterop.CVariable.Type declared in kotlinx.cinterop' type=kotlinx.cinterop.CVariable.Type origin=null

 * Source files: 
 * Compiler version: 1.9.10
 * Output kind: DYNAMIC
Line 235 doesn't even have a typeOf:
Copy code
private val DBusInterfaceMethodCall = staticCFunction<CPointer<GDBusConnection>?, CPointer<gcharVar>?, CPointer<gcharVar>?, CPointer<gcharVar>?, CPointer<gcharVar>?, CPointer<GVariant>?, CPointer<GDBusMethodInvocation>?, gpointer?, Unit> { connection, sender, objectPath, interfaceName, methodName, parameters, invocation, handle ->
   // ...
}