5 lines
69 B
Kotlin
Vendored
5 lines
69 B
Kotlin
Vendored
fun box(): String {
|
|
fun <T> foo(t: T) = t
|
|
|
|
return foo("OK")
|
|
} |