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

changeset 0
959103a6100f
equal deleted inserted replaced
-1:000000000000 0:959103a6100f
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 }
14
15 @Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
16 @interface A { int value(); }

mercurial