Files
kotlin-fork/compiler/testData/ir/irText/arrayAssignment.kt
T

4 lines
59 B
Kotlin
Vendored

fun test() {
val x = intArrayOf(1, 2, 3)
x[1] = 0
}