Files
kotlin/compiler/testData/codegen/box/functions/localFunctions/localWithDefault.kt

9 lines
139 B
Kotlin

class Z {}
fun box(): String {
fun Z.plus(s : String, d : String = "K") : String {
return s + d
}
return Z() + "O"
}