blob: 52bf6bb5f60e4035bad9c25043edb5f0750b961c [file]
fun box(): String {
try {
null as Nothing
} catch (x: ClassCastException) {
return "OK"
} catch (x: NullPointerException) {
return "OK"
}
return "Fail"
}