blob: 377a6facdac782fc89ac489f8bbde772aed2ae72 [file] [log] [blame]
fun box(): String {
if (false) {
try {
null!!
} catch (e: Exception) {
throw e
}
}
return "OK"
}