tests for comparison of changes in classes
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
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() {
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
package test
|
||||
|
||||
class ClassWithPrivateSecondaryConstructorsAdded {
|
||||
}
|
||||
|
||||
class ClassWithPrivateSecondaryConstructorsAdded2() {
|
||||
constructor(arg: Float) : this() {}
|
||||
}
|
||||
|
||||
class ClassWithPrivateSecondaryConstructorsRemoved() {
|
||||
private constructor(arg: Int): this() {}
|
||||
private constructor(arg: String): this() {}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
changes in test/ClassWithPrivateSecondaryConstructorsAdded: NONE
|
||||
changes in test/ClassWithPrivateSecondaryConstructorsAdded2: NONE
|
||||
changes in test/ClassWithPrivateSecondaryConstructorsRemoved: NONE
|
||||
Reference in New Issue
Block a user