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