Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/deprecatedRepeatable.fir.kt
T

12 lines
313 B
Kotlin
Vendored

// FULL_JDK
import java.lang.annotation.Repeatable
@java.lang.annotation.Repeatable(Annotations::class) annotation class RepAnn
@Repeatable(OtherAnnotations::class) annotation class OtherAnn
annotation class Annotations(vararg val value: RepAnn)
annotation class OtherAnnotations(vararg val value: OtherAnn)