Files
kotlin-fork/compiler/testData/codegen/box/callableReference/local/simple.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

5 lines
64 B
Kotlin

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