Files
kotlin-fork/j2k/testData/fileOrElement/constructors/privateConstructors.kt
T
2016-12-14 13:35:31 +03:00

5 lines
128 B
Kotlin
Vendored

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