Files
kotlin-fork/compiler/testData/codegen/box/callableReference/local/simpleWithArg.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
74 B
Kotlin

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