Open atyrin opened 4 months ago
It is reproducible for K1 if the example is changed a bit.
// commonMain
expect class Skiko()
// nativeMain
actual class Skiko actual constructor(){
fun isShowing(): Boolean {
return false
}
}
// jvmMain
file: kotlin.kt
actual class Skiko actual constructor() {
val isShowing = false
override fun isShowing(): Boolean {
return false
}
}
K2 adds the synthetic property isShowing
from JavaParent
that causes Multiple pages associated with key
.
Blocked by #3338
Create a KMP project with JVM + any native target.
dokkaHtml fails with enabled K2 mode:
For K1 works fine.
Installation
The project: Skiko