Files
kotlin-fork/compiler/testData/codegen/box/arrays/arrayPlusAssign.kt
T
2018-06-09 19:15:38 +03:00

8 lines
150 B
Kotlin
Vendored

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