21 lines
481 B
Java
21 lines
481 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.ContainedBy;
|
||
|
import java.lang.annotation.ContainerFor;
|
||
|
|
||
|
@ContainedBy(Foo.class)
|
||
|
@ContainerFor(Foo.class)
|
||
|
@interface Foo {
|
||
|
Foo[] value() default {};
|
||
|
}
|
||
|
|
||
|
@Foo() @Foo()
|
||
|
public class BaseAnnoAsContainerAnno {}
|
||
|
|