Files
kotlin-fork/compiler/testData/codegen/box/functions/localFunctions/kt3308.kt
T

5 lines
69 B
Kotlin
Vendored

fun box(): String {
fun <T> foo(t: T) = t
return foo("OK")
}