5afab1ac2b
parameters with bounds/supertypes.
8 lines
75 B
Kotlin
Vendored
8 lines
75 B
Kotlin
Vendored
fun <T> foo(t: T) {
|
|
}
|
|
|
|
fun box(): String {
|
|
foo(null)
|
|
return "OK"
|
|
}
|