21 lines
252 B
Kotlin
Vendored
21 lines
252 B
Kotlin
Vendored
package test
|
|
|
|
annotation class Ann1
|
|
annotation class Ann2
|
|
|
|
fun annotationListBecameNotEmpty() {}
|
|
|
|
@Ann1
|
|
@Ann2
|
|
fun annotationListBecameEmpty() {}
|
|
|
|
@Ann1
|
|
fun annotationAdded() {}
|
|
|
|
@Ann1
|
|
@Ann2
|
|
fun annotationRemoved() {}
|
|
|
|
@Ann1
|
|
fun annotationReplaced() {}
|