Files
kotlin/compiler/testData/codegen/box/defaultArguments/function/binaryCall.kt

4 lines
78 B
Kotlin
Vendored

infix fun Int.foo(o: String, k: String = "K") = o + k
fun box() = 42 foo "O"