summaryrefslogtreecommitdiff
path: root/plugins/kotlin/jps/jps-plugin/tests/testData/comparison/classMembersOnlyChanged/membersAnnotationListChanged/old.kt
blob: 555cf728821882f30daf38147959f7594305b5cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package test

annotation class Ann1
annotation class Ann2

class A {
    fun annotationListBecameNotEmpty() {}

    @Ann1
    @Ann2
    fun annotationListBecameEmpty() {
    }

    @Ann1
    fun annotationAdded() {
    }

    @Ann1
    @Ann2
    fun annotationRemoved() {
    }

    @Ann1
    fun annotationReplaced() {
    }
}