Files
kotlin-fork/compiler/testData/codegen/box/functions/localFunctions/kt3978.kt
T
2018-06-09 19:15:38 +03:00

12 lines
155 B
Kotlin
Vendored

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