Files
kotlin-fork/j2k/testData/fileOrElement/constructors/privateConstructors.kt
T
2015-09-18 15:44:18 +03:00

6 lines
133 B
Kotlin
Vendored

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