I'm using ```macosX64 { compilerOptions { ...
# multiplatform
m
I'm using
Copy code
macosX64 {
    compilerOptions {
        optIn = listOf(
            "kotlin.experimental.ExperimentalNativeApi",
            "kotlinx.cinterop.ExperimentalForeignApi",
        )
    }
}
in gradle but I still get compile errors for not opting in to these. Is this just broken in Kotlin 2.0.0 or is there something else I need to do?