Files
kotlin-fork/compiler/testData/cfg/declarations/local/localFunction.kt
T

5 lines
72 B
Kotlin
Vendored

fun test(): Int {
val j = 1
fun local() = 1
return local()
}