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

3 lines
126 B
Kotlin
Vendored

internal class C private constructor(arg1: Int, arg2: Int, arg3: Int = 0) {
constructor(arg1: Int) : this(arg1, 0, 0) {}
}