blob: 6e3ed6865fcc69ba5d253dcecb7444c0c5574b6e [file]
// IGNORE_BACKEND_FIR: JVM_IR
fun <T : Number?> foo(t: T) {
t?.toInt()
}
fun box(): String {
foo<Int?>(null)
return "OK"
}