Updated the Kotlin plugin, and found that code com...
# intellij
n
Updated the Kotlin plugin, and found that code completion in a Kotlin Native project using a C library (statically linked) no longer works.
Opened up a knm file, and discovered that IntelliJ doesn't know about the new Kotlin Native compiler ABI:
Copy code
// This class file was compiled with different version of Kotlin compiler and can't be decompiled.
//
// Current compiler ABI version is 1.0.0
// File ABI version is unknown
Code completion is now working after the build file was updated to use Kotlin 1.3.70, and a Gradle refresh was done.
👍 1