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

12 lines
180 B
Kotlin
Vendored

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