Files
kotlin-fork/compiler/testData/codegen/box/callableReference/function/local/simpleClosure.kt
T
2018-08-09 14:22:50 +03:00

8 lines
90 B
Kotlin
Vendored

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