Files
kotlin-fork/analysis/symbol-light-classes/testData/annotationsEquality/JavaRepeatable.kt
T
Dmitrii Gridin ba9520f5c5 [SLC] add more tests
^KT-56046
2023-02-03 19:49:04 +00:00

9 lines
347 B
Kotlin
Vendored

// 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>)