Files
kotlin/compiler/testData/codegen/box/closures/localGenericFun.kt
2013-09-24 12:59:57 +04:00

12 lines
181 B
Kotlin

fun box() : String {
fun <T> local(s : T) : T {
return s;
}
if (local(10) != 10) return "fail1"
if (local("11") != "11") return "fail2"
return "OK"
}