blob: 0a46a26a41426f247c7415aebca13364b2d51dcf [file]
// ISSUE: KT-72746
// IGNORE_KLIB_BACKEND_ERRORS_WITH_CUSTOM_FIRST_STAGE: JS,Wasm-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"
}
}
}