blob: 0d4f831dfb7f116fd63af1822f392cbbb740e92f [file]
fun <T> foo(t: T) {
t!!
}
fun box(): String {
try {
foo<Any?>(null)
} catch (e: Exception) {
return "OK"
}
return "Fail"
}