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

12 lines
179 B
Kotlin
Vendored

// 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()
}