DuplicateAnnotationValue.java revision 1520:71f35e4b93a5
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 */
8import java.lang.annotation.*;
9class DuplicateAnnotationValue<K extends @A(value = 2, value = 1) Object> {
10}
11
12@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
13@interface A { int value(); }
14