blob: b1d73bfb96a248a06250869fdd2ce8ed7576f868 [file]
fun box() : String {
try {
return "OK"
}
finally {
null?.toString()
}
}