blob: beb1cb723f23ded6cae523eb3df3c0f52c9e1dd7 [file]
fun <T: Number?> foo(t: T) {
(t ?: 42).toInt()
}
fun box(): String {
foo<Int?>(null)
return "OK"
}