Files
kotlin/compiler/testData/codegen/box/elvis/genericNull.kt

9 lines
112 B
Kotlin
Vendored

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