blob: 52985d9c57605472f43bb38ae1386a85e0afcd8a [file]
fun nestedNothing(s: String) =
"" + if (s == "OK") s else barf()
fun barf(): Nothing = throw NullPointerException()
fun box() = nestedNothing("OK")