[SLC] add more tests

^KT-56046
This commit is contained in:
Dmitrii Gridin
2023-01-30 15:04:20 +01:00
committed by Space Team
parent 347dc83773
commit ba9520f5c5
13 changed files with 106 additions and 0 deletions
@@ -0,0 +1,8 @@
// 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>)