1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
10 lines
217 B
Kotlin
10 lines
217 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"
|
|
for(b in d) if (b) return "fail"
|
|
}
|
|
|
|
return "OK"
|
|
}
|