Files
kotlin/compiler/testData/codegen/box/elvis/genericNull.kt
Svyatoslav Kuzmich 4c38d55f21 [JS IR BE] Unmute tests
2018-10-15 00:03:45 +03:00

9 lines
112 B
Kotlin
Vendored

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