1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
8 lines
197 B
Kotlin
8 lines
197 B
Kotlin
fun box(): String {
|
|
val array = intArrayOf(11, 12, 13)
|
|
val p = array.get(0)
|
|
if (p != 11) return "fail 1: $p"
|
|
|
|
val stringArray = arrayOf("OK", "FAIL")
|
|
return stringArray.get(0)
|
|
} |