Files
kotlin-fork/compiler/testData/codegen/box/functions/localFunctions/kt3978.kt
T
2018-06-28 12:26:41 +02:00

13 lines
181 B
Kotlin
Vendored

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