Files
kotlin-fork/compiler/testData/codegen/box/functions/localFunctions/kt3978.kt
T
Roman Artemev 7f215d3f52 Update tests
2018-11-01 16:51:38 +03:00

12 lines
156 B
Kotlin
Vendored

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