Files
Michael Nedzelsky ff54b362ea tests for comparison of changes in classes
Original commit: ae7cc8e430
2015-09-19 00:14:07 +03:00

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() {
}