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

13 lines
205 B
Kotlin
Vendored

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