test/tools/javac/annotations/typeAnnotations/failures/common/receiver/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 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 }
12
13 @Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
14 @interface A { int value(); }

mercurial