I’m trying to update to Kotlin 1.5.0 (with compose...
# compose-web
c
I’m trying to update to Kotlin 1.5.0 (with compose web “0.0.0-web-dev-13”) although I’m hitting a compiler failure.
java.lang.IllegalStateException: could not convert sym to ClassifierSymbol
In my module serverApp, I can reproduce just with these dependencies added and no additional javascript code in the module (and no common dependencies).
Copy code
val jsMain by getting {
    dependencies {
        implementation(libs.kotlinxCoroutines)
        implementation(compose.runtime)
        implementation(compose.web.core)
        implementation(compose.web.widgets)
    }
}
But in my module browserApp (which where the actual compose code lives), I’m not able to reproduce with a similar set of dependencies.