blob: 57b77e171ffca27049e4f8108ae7c164fcbb50ed [file]
// WITH_STDLIB
fun foo() {
val array = Array(0, { IntArray(0) } )
array.forEach { println(it.asList()) }
}
fun box(): String {
foo() // just to be sure, that no exception happens
return "OK"
}