Files
kotlin-fork/compiler/testData/codegen/box/functions/localFunctions/kt3308.kt
T
Mikhael Bogdanov e2f3a589e7 KT-3308 Support local generic functions in codegen
#KT-3308 Can'tReproduce
2014-04-01 11:18:16 +04:00

5 lines
68 B
Kotlin

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