Files
kotlin/compiler/testData/codegen/box/callableReference/function/local/localLocal.kt
2018-06-28 12:26:41 +02:00

12 lines
186 B
Kotlin
Vendored

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