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

Mon, 03 Dec 2012 11:16:32 +0100

author
jfranck
date
Mon, 03 Dec 2012 11:16:32 +0100
changeset 1445
376d6c1b49e5
parent 1386
bf76f4190ef8
child 1492
df694c775e8a
permissions
-rw-r--r--

8001114: Container annotation is not checked for semantic correctness
Reviewed-by: jjg

     1 /**
     2  * @test    /nodynamiccopyright/
     3  * @bug     7169362
     4  * @author   sogoel
     5  * @summary Missing value() method in ContainerAnnotation
     6  * @compile/fail/ref=MissingValueMethod.out -XDrawDiagnostics MissingValueMethod.java
     7  */
     9 import java.lang.annotation.ContainedBy;
    10 import java.lang.annotation.ContainerFor;
    12 @ContainedBy(FooContainer.class)
    13 @interface Foo {}
    15 @ContainerFor(Foo.class)
    16 @interface FooContainer{
    17     Foo[] values();  // wrong method name
    18 }
    20 @Foo @Foo
    21 public class MissingValueMethod {}

mercurial