Files
kotlin-fork/backend.native/tests/external/codegen/blackbox/regressions/arrayLengthNPE.kt
T
Ilya Matveev 1b553ebfaf backend/tests: Add blackbox tests from Kotlin JVM
Added tests from testData/codegen/box directory. There are blackbox tests
in other directories and they are to be added.
2017-01-20 14:04:04 +03:00

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