Files
kotlin/compiler/testData/diagnostics/testsWithJava8/annotations/javaRepeatable.kt

20 lines
360 B
Kotlin
Vendored

// FILE: RepeatableAnnotation.java
import java.lang.annotation.Repeatable
@Repeatable(RepeatableAnnotations.class)
public @interface RepeatableAnnotation {
}
// FILE: RepeatableAnnotations.java
public @interface RepeatableAnnotations {
RepeatableAnnotation[] value();
}
// FILE: RepeatableUse.kt
RepeatableAnnotation RepeatableAnnotation class My