Files
kotlin-fork/compiler/testData/ir/irText/declarations/defaultArguments.kt
T
Mikhail Glukhikh 881073b1c9 Add basic FIR -> IR converter with a set of text tests
Tests duplicate IrTextTestCaseGenerated
#KT-24065 Fixed
2019-04-05 16:18:58 +03:00

6 lines
130 B
Kotlin
Vendored

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