Files
2015-09-19 00:14:07 +03:00

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() {
}