I’m still trying to come up with a reproducer, wit...
# compose
z
I’m still trying to come up with a reproducer, with dev12 i’m starting to get this compiler error:
Copy code
e: kotlin.UninitializedPropertyAccessException: Parent not initialized: org.jetbrains.kotlin.ir.declarations.impl.IrValueParameterImpl@e27c4d
Posting eagerly just in case @Leland Richardson [G] already fixed this one too 😜
l
I haven't, but I think a bug for this just for posted in the past few days
👍 1
Got posted*
z
Yea that repro code definitely looks like what i’ve got
Also, TIL that google search does not index this issue tracker, at least within a couple days.
l
k
@Leland Richardson [G] I got the same error when I converted
val anchors = listOf(minPx, maxPx, maxPx / 2)
val flingConfig = AnchorsFlingConfig(anchors.map { it.value })
TO:
val flingConfig = AnchorsFlingConfig(anchors.map(Px::value))
I use dev13