test/tools/javac/annotations/typeAnnotations/failures/common/receiver/DuplicateAnnotationValue.java

Tue, 12 Mar 2013 17:39:34 +0100

author
jfranck
date
Tue, 12 Mar 2013 17:39:34 +0100
changeset 1629
f427043f8c65
parent 0
959103a6100f
permissions
-rw-r--r--

7196531: Duplicate error messages on repeating annotations
Reviewed-by: jjg

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug 6843077 6919944 8006775
     4  * @summary check for duplicate annotation values in receiver
     5  * @author Mahmood Ali
     6  * @compile/fail/ref=DuplicateAnnotationValue.out -XDrawDiagnostics DuplicateAnnotationValue.java
     7  */
     8 import java.lang.annotation.*;
     9 class DuplicateAnnotationValue {
    10   void test(@A(value = 2, value = 1) DuplicateAnnotationValue this) { }
    11 }
    13 @Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
    14 @interface A { int value(); }

mercurial