ff54b362ea
Original commit: ae7cc8e430
16 lines
414 B
Kotlin
Vendored
16 lines
414 B
Kotlin
Vendored
package test
|
|
|
|
class ClassWithPrivateSecondaryConstructorsAdded() {
|
|
private constructor(arg: Int) : this() {}
|
|
private constructor(arg: String) : this() {}
|
|
}
|
|
|
|
class ClassWithPrivateSecondaryConstructorsAdded2() {
|
|
private constructor(arg: Int) : this() {}
|
|
private constructor(arg: String) : this() {}
|
|
constructor(arg: Float) : this() {}
|
|
}
|
|
|
|
class ClassWithPrivateSecondaryConstructorsRemoved() {
|
|
}
|