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

12 lines
184 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
fun foo(): String {
fun bar(x: String, y: String = x): String {
return y
}
return bar("OK")
}
fun box(): String {
return foo()
}