// FIR_IDENTICAL // FULL_JDK @kotlin.annotation.Repeatable @java.lang.annotation.Repeatable(AContainer::class) annotation class A annotation class AContainer(val value: Array) @kotlin.annotation.Repeatable @kotlin.jvm.JvmRepeatable(BContainer::class) annotation class B annotation class BContainer(val value: Array) @kotlin.annotation.Repeatable @kotlin.annotation.Repeatable @kotlin.jvm.JvmRepeatable(CContainer::class) @java.lang.annotation.Repeatable(CContainer::class) annotation class C annotation class CContainer(val value: Array) typealias AlphaRepeatable = kotlin.annotation.Repeatable typealias BetaRepeatable = kotlin.jvm.JvmRepeatable @AlphaRepeatable @BetaRepeatable(DContainer::class) annotation class D annotation class DContainer(val value: Array)