Files
kotlin/compiler/testData/codegen/box/callableReference/function/local/localFunctionName.kt
2020-03-03 18:54:36 +03:00

8 lines
91 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
fun box(): String {
fun OK() {}
return ::OK.name
}