Files
kotlin-fork/compiler/testData/codegen/box/functions/localFunctions/kt3978_2.kt
T
2019-11-19 11:00:09 +03:00

13 lines
232 B
Kotlin
Vendored

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