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

Sat, 07 Nov 2020 10:30:02 +0800

author
aoqi
date
Sat, 07 Nov 2020 10:30:02 +0800
changeset 3938
93012e2a5d1d
parent 0
959103a6100f
permissions
-rw-r--r--

Added tag mips-jdk8u275-b01 for changeset eb6ee6a5f2fe

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

mercurial