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