[SLC] implement java annotations for annotation classes

^KT-55481 Fixed
This commit is contained in:
Dmitrii Gridin
2022-12-14 16:37:40 +01:00
committed by Space Team
parent 1e1525bae5
commit f3c7972d20
16 changed files with 204 additions and 88 deletions
@@ -0,0 +1,6 @@
// Two
// FULL_JDK
@java.lang.annotation.Repeatable(TwoContainer::class)
annotation class Two(val name: String)
annotation class TwoContainer(val value: Array<Two>)