KT-3308 Support local generic functions in codegen

#KT-3308 Can'tReproduce
This commit is contained in:
Mikhael Bogdanov
2014-04-01 11:04:24 +04:00
parent 4269729b0a
commit e2f3a589e7
2 changed files with 10 additions and 0 deletions
@@ -0,0 +1,5 @@
fun box(): String {
fun foo<T>(t: T) = t
return foo("OK")
}