blob: 9a4f57a59afc66173f00ff0f2c0fd083b261ec6c [file]
// PSI: org.jetbrains.kotlin.light.classes.symbol.classes.SymbolLightClassForAnnotationClass
// EXPECTED: java.lang.annotation.Repeatable
// UNEXPECTED: kotlin.annotation.Repeatable
@JvmRepeatable(TwoContainer::class)
annotation class T<caret>wo(val name: String)
annotation class TwoContainer(val value: Array<Two>)