blob: f66a1f6958cd045b7474fde42c00cd597d07256c [file]
// PSI: org.jetbrains.kotlin.light.classes.symbol.classes.SymbolLightClassForAnnotationClass
// EXPECTED: java.lang.annotation.Repeatable
// UNEXPECTED:kotlin.annotation.Repeatable
// FULL_JDK
@java.lang.annotation.Repeatable(TwoContainer::class)
annotation class Tw<caret>o(val name: String)
annotation class TwoContainer(val value: Array<Two>)