mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
9 lines
105 B
Kotlin
9 lines
105 B
Kotlin
fun foo<T : Number?>(t: T) {
|
|
t?.toInt()
|
|
}
|
|
|
|
fun box(): String {
|
|
foo<Int?>(null)
|
|
return "OK"
|
|
}
|