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

6 lines
249 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(a1: Int, b1: Int, c1: Int) : this(a1, b1, c1, 0, 0) {}
constructor(b: Byte) : this(b.toInt(), 0, 0, 0, 0) {}
}