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