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

5 lines
64 B
Kotlin
Vendored

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