tests for comparison of changes in classes
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
package test
|
||||
|
||||
class ClassWithPrivatePrimaryConstructorAdded private constructor() {
|
||||
private constructor(arg: Int) : this() {}
|
||||
}
|
||||
|
||||
class ClassWithPrivatePrimaryConstructorRemoved {
|
||||
private constructor(arg: Int) {}
|
||||
}
|
||||
|
||||
class ClassWithPrivatePrimaryConstructorChanged private constructor(arg: String) {
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
package test
|
||||
|
||||
class ClassWithPrivatePrimaryConstructorAdded {
|
||||
private constructor(arg: Int) {}
|
||||
}
|
||||
|
||||
class ClassWithPrivatePrimaryConstructorRemoved private constructor() {
|
||||
private constructor(arg: Int) : this() {}
|
||||
}
|
||||
|
||||
class ClassWithPrivatePrimaryConstructorChanged private constructor() {
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
changes in test/ClassWithPrivatePrimaryConstructorAdded: NONE
|
||||
changes in test/ClassWithPrivatePrimaryConstructorChanged: NONE
|
||||
changes in test/ClassWithPrivatePrimaryConstructorRemoved: NONE
|
||||
Reference in New Issue
Block a user