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

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

author
jjg
date
Fri, 02 Nov 2012 14:35:57 -0700
changeset 1386
bf76f4190ef8
child 1492
df694c775e8a
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 Wrong return type for value() in ContainerAnnotation
     6  * @compile/fail/ref=WrongReturnTypeForValue.out -XDrawDiagnostics WrongReturnTypeForValue.java
     7  */
     9 import java.lang.annotation.ContainedBy;
    10 import java.lang.annotation.ContainerFor;
    12 @ContainedBy(FooContainer.class)
    13 @interface Foo {
    14     int getNumbers();
    15 }
    17 @ContainerFor(Foo.class)
    18 @interface FooContainer{
    19     Foo value();     // wrong return type
    20 }
    22 @Foo @Foo
    23 public class WrongReturnTypeForValue {}

mercurial