13 lines
297 B
Kotlin
Vendored
13 lines
297 B
Kotlin
Vendored
package test
|
|
|
|
class ClassWithPrivatePrimaryConstructorAdded {
|
|
private constructor(arg: Int) {}
|
|
}
|
|
|
|
class ClassWithPrivatePrimaryConstructorRemoved private constructor() {
|
|
private constructor(arg: Int) : this() {}
|
|
}
|
|
|
|
class ClassWithPrivatePrimaryConstructorChanged private constructor() {
|
|
}
|