blob: 8c7a1150b1cc21935acf6c58e748bc1db0025c26 [file]
// ISSUE: KT-72746
// IGNORE_KLIB_BACKEND_ERRORS_WITH_CUSTOM_FIRST_STAGE: JS:2.0,2.1
// ^^^ KT-72746 fixed in 2.1.20-Beta1
fun box(): String {
var test: Int? = null
return if (test != null) {
"Fail"
} else {
try {
test!!.toString()
} catch (_: NullPointerException) {
"OK"
}
}
}