Files
kotlin-fork/compiler/testData/asJava/lightClasses/AnnotationKotlinAndJvmRepeatable.kt
T
2022-09-15 15:38:32 +00:00

9 lines
189 B
Kotlin
Vendored

// Two
// WITH_STDLIB
// STDLIB_JDK8
// FULL_JDK
@Repeatable
@JvmRepeatable(TwoContainer::class)
annotation class Two(val name: String)
annotation class TwoContainer(val value: Array<Two>)