Files
kotlin-fork/compiler/testData/codegen/box/arrays/arrayPlusAssign.kt
T
2020-03-18 11:31:53 +03:00

7 lines
125 B
Kotlin
Vendored

fun box(): String {
val s = IntArray(1)
s[0] = 5
s[0] += 7
return if (s[0] == 12) "OK" else "Fail ${s[0]}"
}