Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt15196.kt
T

11 lines
211 B
Kotlin
Vendored

// WITH_RUNTIME
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"
}