b6f950ed75
Merge-request: KT-MR-7318 Merged-by: Nikolay Lunyak <Nikolay.Lunyak@jetbrains.com>
28 lines
985 B
Kotlin
Vendored
28 lines
985 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// FULL_JDK
|
|
|
|
<!REDUNDANT_REPEATABLE_ANNOTATION!>@kotlin.annotation.Repeatable<!>
|
|
@java.lang.annotation.Repeatable(AContainer::class)
|
|
annotation class A
|
|
annotation class AContainer(val value: Array<A>)
|
|
|
|
<!REDUNDANT_REPEATABLE_ANNOTATION!>@kotlin.annotation.Repeatable<!>
|
|
@kotlin.jvm.JvmRepeatable(BContainer::class)
|
|
annotation class B
|
|
annotation class BContainer(val value: Array<B>)
|
|
|
|
<!REDUNDANT_REPEATABLE_ANNOTATION!>@kotlin.annotation.Repeatable<!>
|
|
<!REPEATED_ANNOTATION!>@kotlin.annotation.Repeatable<!>
|
|
@kotlin.jvm.JvmRepeatable(CContainer::class)
|
|
<!REPEATED_ANNOTATION!>@java.lang.annotation.Repeatable(CContainer::class)<!>
|
|
annotation class C
|
|
annotation class CContainer(val value: Array<C>)
|
|
|
|
typealias AlphaRepeatable = kotlin.annotation.Repeatable
|
|
typealias BetaRepeatable = kotlin.jvm.JvmRepeatable
|
|
|
|
<!REDUNDANT_REPEATABLE_ANNOTATION!>@AlphaRepeatable<!>
|
|
@BetaRepeatable(DContainer::class)
|
|
annotation class D
|
|
annotation class DContainer(val value: Array<D>)
|