Files
kotlin-fork/compiler/testData/asJava/findClasses/RepeatableAnnotation.kt
T
2021-09-09 11:17:35 +00:00

11 lines
475 B
Kotlin
Vendored

@Repeatable
annotation class RepeatableAnnotation(val value: Int)
@Repeatable
@JvmRepeatable(RepeatableAnnotation2Container::class)
annotation class RepeatableAnnotation2(val value: Int)
annotation class RepeatableAnnotation2Container(val value: Array<RepeatableAnnotation2>)
@JvmRepeatable(RepeatableAnnotation3Container::class)
annotation class RepeatableAnnotation3(val value: Int)
annotation class RepeatableAnnotation3Container(val value: Array<RepeatableAnnotation3>)