blob: 92f5712451a95a60171d5f3b8a162ae82f534e93 [file]
class RepeatableAnnotation {
@MyRepeatableAnnotation(1)
class ClassWithOneRepeatableAnnotation
@MyRepeatableAnnotation(1)
@MyRepeatableAnnotation(2)
class ClassWithTwoRepeatableAnnotations
@MyRepeatableAnnotation(1)
@MyRepeatableAnnotation(2)
@MyRepeatableAnnotation(3)
class ClassWithThreeRepeatableAnnotations
}
@Repeatable
annotation class MyRepeatableAnnotation(val index: Int)