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

11 lines
160 B
Kotlin
Vendored

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