In my case, the aforementioned ```e: java.lang.Nul...
# compose
v
In my case, the aforementioned
Copy code
e: java.lang.NullPointerException
	at org.jetbrains.kotlin.ir.util.IrUtilsKt.getTypeSubstitutionMap(IrUtils.kt:548)
build error triggers for a code as simple as
Copy code
@Parcelize
class X(val a: LinkedHashSet<Float>) : Parcelable
This compiles OK if I set compose = false in build.gradle.kts or change LinkedHashSet to Set or remove Parcelable/Parcelize. Will file a bug for Compose...