Files
kotlin/compiler/testData/codegen/box/callableReference/function/local/localFunctionName.kt
Alexander Udalov 2564a2f91f Do not include kotlin-reflect at runtime by default in codegen tests
Change some tests to either include reflection or to avoid using it
2016-03-09 10:25:38 +03:00

6 lines
60 B
Kotlin
Vendored

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