Files
kotlin-fork/compiler/testData/asJava/lightClasses/AnnotationKotlinAndJavaRepeatable.kt
T
2021-09-07 12:47:24 +00:00

10 lines
231 B
Kotlin
Vendored

// Two
// STDLIB_JDK8
// FULL_JDK
import java.lang.annotation.Repeatable as JvmRepeatable
@Repeatable
@JvmRepeatable(TwoContainer::class)
annotation class Two(val name: String)
annotation class TwoContainer(val value: Array<Two>)