1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
10 lines
205 B
Kotlin
10 lines
205 B
Kotlin
fun box(): String {
|
|
val x : Array<Array<*>> = arrayOf(arrayOf(1))
|
|
val y : Array<in Array<String>> = x
|
|
|
|
if (y.size != 1) return "fail 1"
|
|
|
|
y[0] = arrayOf("OK")
|
|
|
|
return x[0][0] as String
|
|
} |