Files
kotlin-fork/compiler/testData/codegen/box/callableReference/local/localLocal.kt
T
Alexander Udalov 363fe607fc Support local function references in codegen
#KT-3704 In Progress
 #KT-1183 In Progress
2013-12-24 20:41:19 +04:00

11 lines
160 B
Kotlin

fun box(): String {
fun foo(): String {
fun bar() = "OK"
val ref = ::bar
return ref()
}
val ref = ::foo
return ref()
}