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