summaryrefslogtreecommitdiff
path: root/plugins/kotlin/jps/jps-plugin/tests/testData/comparison/packageMembers/membersAnnotationListChanged/old.kt
blob: 3d39ec4b4098c93c8c14ff7230588478e3fc6817 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package test

annotation class Ann1
annotation class Ann2

fun annotationListBecameNotEmpty() {}

@Ann1
@Ann2
fun annotationListBecameEmpty() {}

@Ann1
fun annotationAdded() {}

@Ann1
@Ann2
fun annotationRemoved() {}

@Ann1
fun annotationReplaced() {}