Files
kotlin-fork/compiler/testData/codegen/box/arrays/kt33.kt
T
2018-09-18 14:36:20 +03:00

7 lines
140 B
Kotlin
Vendored

fun box () : String {
val s = ArrayList<String>()
s.add("foo")
s[0] += "bar"
return if(s[0] == "foobar") "OK" else "fail"
}