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

6 lines
90 B
Kotlin
Vendored

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