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 */
8import java.lang.annotation.*;
9class DuplicateTypeAnnotation {
10  void test() {
11    String @A @A [] s;
12  }
13}
14
15@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
16@interface A { }
17