363fe607fc
#KT-3704 In Progress #KT-1183 In Progress
11 lines
160 B
Kotlin
11 lines
160 B
Kotlin
fun box(): String {
|
|
fun foo(): String {
|
|
fun bar() = "OK"
|
|
val ref = ::bar
|
|
return ref()
|
|
}
|
|
|
|
val ref = ::foo
|
|
return ref()
|
|
}
|