1/*
2 * @test /nodynamiccopyright/
3 * @bug 6843077 8006775
4 * @summary check for duplicate annotations in receiver
5 * @author Mahmood Ali
6 * @compile/fail/ref=DuplicateTypeAnnotation.out -XDrawDiagnostics DuplicateTypeAnnotation.java
7 */
8import java.lang.annotation.*;
9class DuplicateTypeAnnotation {
10  void test(@A @A DuplicateTypeAnnotation this) { }
11}
12
13@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
14@interface A { }
15