blob: 44321123cb5c5abc8c75ed1af00e8ab0cb0444fa [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 6843077 6919944
* @summary check for duplicate annotation values for type parameter
* @author Mahmood Ali
* @compile/fail/ref=DuplicateAnnotationValue.out -XDrawDiagnostics -source 1.7 DuplicateAnnotationValue.java
*/
class DuplicateAnnotationValue<K> {
DuplicateAnnotationValue<@A(value = 2, value = 1) ?> l;
}
@interface A { int value(); }