test/tools/javac/annotations/typeAnnotations/failures/common/wildcards/DuplicateTypeAnnotation.java

changeset 1521
71f35e4b93a5
parent 0
959103a6100f
equal deleted inserted replaced
1520:5c956be64b9e 1521:71f35e4b93a5
1 /*
2 * @test /nodynamiccopyright/
3 * @bug 6843077 8006775
4 * @summary check for duplicate annotations
5 * @author Mahmood Ali
6 * @compile/fail/ref=DuplicateTypeAnnotation.out -XDrawDiagnostics DuplicateTypeAnnotation.java
7 */
8 import java.lang.annotation.*;
9 class DuplicateTypeAnno<K> {
10 DuplicateTypeAnno<@A @A ?> l;
11 }
12
13 @Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
14 @interface A { }

mercurial