Files
kotlin-fork/compiler/testData/ir/irText/declarations/defaultArguments.kt
T

4 lines
112 B
Kotlin
Vendored

fun test1(x: Int, y: Int = 0, z: String = "abc") {
fun local(xx: Int = x, yy: Int = y, zz: String = z) {}
}