Files
2015-09-19 00:14:07 +03:00

14 lines
315 B
Kotlin
Vendored

package test
class ClassWithPrivateSecondaryConstructorsAdded {
}
class ClassWithPrivateSecondaryConstructorsAdded2() {
constructor(arg: Float) : this() {}
}
class ClassWithPrivateSecondaryConstructorsRemoved() {
private constructor(arg: Int): this() {}
private constructor(arg: String): this() {}
}