jdk-24/test/langtools/tools/javac/annotations/repeatingAnnotations/BaseAnnoAsContainerAnno.java
2018-12-05 11:31:20 -08:00

19 lines
408 B
Java

/**
* @test /nodynamiccopyright/
* @bug 7169362
* @author sogoel
* @summary Base annotation specify itself as ContainerAnnotation
* @compile/fail/ref=BaseAnnoAsContainerAnno.out -XDrawDiagnostics BaseAnnoAsContainerAnno.java
*/
import java.lang.annotation.Repeatable;
@Repeatable(Foo.class)
@interface Foo {
Foo[] value() default {};
}
@Foo @Foo
public class BaseAnnoAsContainerAnno {}