Kotlin arrays

Kotlin arrays don’t work (NPE)
How to reproduce:
arrayOf(1)

2 Likes

It seems to be only the instantiation.

listOf(1).toTypedArray() is working.

We fixed the issue with Kotlin arrays.

1 Like