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

Fri, 02 Nov 2012 14:35:57 -0700

author
jjg
date
Fri, 02 Nov 2012 14:35:57 -0700
changeset 1386
bf76f4190ef8
child 1445
376d6c1b49e5
permissions
-rw-r--r--

7169362: JDK8: Write compiler tests for repeating annotations for JDK8
Reviewed-by: darcy, jjg
Contributed-by: sonali.goel@oracle.com

     1 /**
     2  * @test    /nodynamiccopyright/
     3  * @bug     7169362
     4  * @author  sogoel
     5  * @summary Missing default case for other method and return type is base annotation
     6  * @compile/fail/ref=MissingDefaultCase2.out -XDrawDiagnostics MissingDefaultCase2.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[] value();
    18     Foo other();  // missing default clause and return type is an annotation
    19 }
    21 @Foo @Foo
    22 public class MissingDefaultCase2 {}

mercurial