Files
kotlin-fork/nj2k/testData/newJ2k/constructors/parameterDefaults1.kt
T
2019-09-29 11:39:36 +03:00

5 lines
169 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) {}
}