test/tools/javac/annotations/repeatingAnnotations/DocumentedContainerAnno.java

Thu, 31 Aug 2017 15:17:03 +0800

author
aoqi
date
Thu, 31 Aug 2017 15:17:03 +0800
changeset 2525
2eb010b6cb22
parent 1492
df694c775e8a
parent 0
959103a6100f
permissions
-rw-r--r--

merge

aoqi@0 1 /**
aoqi@0 2 * @test /nodynamiccopyright/
aoqi@0 3 * @bug 7169362
aoqi@0 4 * @author sogoel
aoqi@0 5 * @summary Base anno is Documented but Container anno is not
aoqi@0 6 * @compile/fail/ref=DocumentedContainerAnno.out -XDrawDiagnostics DocumentedContainerAnno.java
aoqi@0 7 */
aoqi@0 8
aoqi@0 9 import java.lang.annotation.Repeatable;
aoqi@0 10 import java.lang.annotation.Documented;
aoqi@0 11
aoqi@0 12 @Documented
aoqi@0 13 @Repeatable(FooContainer.class)
aoqi@0 14 @interface Foo {}
aoqi@0 15
aoqi@0 16 @interface FooContainer{
aoqi@0 17 Foo[] value();
aoqi@0 18 }
aoqi@0 19
aoqi@0 20 @Foo @Foo
aoqi@0 21 public class DocumentedContainerAnno {}

mercurial