3789983e89
Reviewed-by: darcy, ihse
22 lines
480 B
Java
22 lines
480 B
Java
/**
|
|
* @test /nodynamiccopyright/
|
|
* @bug 7169362
|
|
* @author sogoel
|
|
* @summary Base anno is Documented but Container anno is not
|
|
* @compile/fail/ref=DocumentedContainerAnno.out -XDrawDiagnostics DocumentedContainerAnno.java
|
|
*/
|
|
|
|
import java.lang.annotation.Repeatable;
|
|
import java.lang.annotation.Documented;
|
|
|
|
@Documented
|
|
@Repeatable(FooContainer.class)
|
|
@interface Foo {}
|
|
|
|
@interface FooContainer{
|
|
Foo[] value();
|
|
}
|
|
|
|
@Foo @Foo
|
|
public class DocumentedContainerAnno {}
|