13 lines
308 B
Kotlin
Vendored
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) {
|
|
}
|