blob: 8f07e139c91467199f876d47a86c9203734ff493 [file] [log] [blame]
/**
* @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 {}