Files
kotlin/compiler/testData/codegen/box/callableReference/function/local/localFunctionName.kt
2018-06-09 19:15:38 +03:00

7 lines
85 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
fun box(): String {
fun OK() {}
return ::OK.name
}