Files
kotlin-fork/nj2k/testData/newJ2k/constructors/parameterDefaults1.kt
T
2019-04-03 11:24:19 +03:00

7 lines
171 B
Kotlin
Vendored

package pack
internal class C @JvmOverloads constructor(a: Int = 0, b: Int = 0, c: Int = 0, d: Int = 0, e: Int = 0) {
constructor(a: Int) : this(a, 0, 0, 0, 1) {}
}