Files
kotlin-fork/compiler/testData/codegen/box/callableReference/local/simpleClosure.kt
T
2013-12-24 20:41:20 +04:00

8 lines
90 B
Kotlin

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