Files
kotlin-fork/compiler/testData/codegen/box/arrays/inProjectionAsParameter.kt
T
2020-03-02 09:49:28 +03:00

9 lines
201 B
Kotlin
Vendored

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