summaryrefslogtreecommitdiff
path: root/plugins/kotlin/jps/jps-plugin/tests/testData/comparison/classPrivateOnlyChange/classWithPrivatePrimaryConstructorChanged/new.kt
blob: 6d08e307d8d9cb679596ea2aea18136008ac62f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package test

class ClassWithPrivatePrimaryConstructorAdded private constructor() {
    private constructor(arg: Int) : this() {}
}

class ClassWithPrivatePrimaryConstructorRemoved {
    private constructor(arg: Int) {}
}

class ClassWithPrivatePrimaryConstructorChanged private constructor(arg: String) {
}