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

11 lines
130 B
Kotlin

fun box() : String {
fun local(i: Int = 1) : Int {
return i
}
return if (local() != 1) "fail" else "OK"
}