14 lines
278 B
Kotlin
14 lines
278 B
Kotlin
// This test was adapted from compiler/testData/codegen/boxWithStdlib/callableReference/function/local/.
|
|
package foo
|
|
|
|
fun box(): String {
|
|
fun foo(): String {
|
|
fun bar() = "OK"
|
|
val ref = ::bar
|
|
return ref()
|
|
}
|
|
|
|
val ref = ::foo
|
|
return ref()
|
|
}
|