Files
kotlin-fork/compiler/testData/codegen/box/functions/localFunctions/disabledInline.kt
T

9 lines
123 B
Kotlin

fun box(): String {
val s = "OK"
[inline] fun localFun(): String {
return s
}
return localFun()
}