Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/arrays/inProjectionAsParameter.kt
T
2015-04-10 08:59:26 +03:00

9 lines
195 B
Kotlin

fun test(y: Array<in Array<String>>) {
y[0] = kotlin.array("OK")
}
fun box() : String {
val x : Array<Array<*>> = kotlin.array(kotlin.array(1))
test(x)
return x[0][0] as String
}