2013-01-14 13:50:01 -08:00

19 lines
412 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 {}