1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
14 lines
257 B
Kotlin
14 lines
257 B
Kotlin
// See KT-14242
|
|
var x = 1
|
|
fun box(): String {
|
|
val testArray: Array<String?>? = when (1) {
|
|
x -> null
|
|
else -> arrayOfNulls<String>(0)
|
|
}
|
|
|
|
// Must not be NPE here
|
|
val size = testArray?.size
|
|
|
|
return size?.toString() ?: "OK"
|
|
}
|