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

13 lines
308 B
Kotlin
Vendored

package test
class ClassWithPrivatePrimaryConstructorAdded private constructor() {
private constructor(arg: Int) : this() {}
}
class ClassWithPrivatePrimaryConstructorRemoved {
private constructor(arg: Int) {}
}
class ClassWithPrivatePrimaryConstructorChanged private constructor(arg: String) {
}