Files
kotlin-fork/compiler/testData/codegen/box/nullCheckOptimization/exclExclThrowsNpe.kt
T
2020-06-23 09:46:47 +03:00

13 lines
311 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
fun box(): String {
val s: String? = null
try {
s!!
return "Fail: NPE should have been thrown"
} catch (e: Throwable) {
if (e::class != NullPointerException::class) return "Fail: exception class should be NPE: ${e::class}"
return "OK"
}
}