Files
kotlin-fork/compiler/testData/codegen/regressions/kt945.kt
T
2013-01-24 21:12:27 +04:00

10 lines
207 B
Kotlin

fun box() : String {
val data = Array<Array<Boolean>>(3) { Array<Boolean>(4, {false}) }
for(d in data) {
if(d.size != 4) return "fail"
System.out?.println(d)
}
return "OK"
}