Files
kotlin-fork/jps-plugin/testData/comparison/packageMembers/membersAnnotationListChanged/new.kt
T

21 lines
252 B
Kotlin
Vendored

package test
annotation class Ann1
annotation class Ann2
@Ann1
@Ann2
fun annotationListBecameNotEmpty() {}
fun annotationListBecameEmpty() {}
@Ann1
@Ann2
fun annotationAdded() {}
@Ann1
fun annotationRemoved() {}
@Ann2
fun annotationReplaced() {}