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