test/tools/javac/annotations/typeAnnotations/failures/common/receiver/InvalidLocation.java

Sat, 07 Nov 2020 10:30:02 +0800

author
aoqi
date
Sat, 07 Nov 2020 10:30:02 +0800
changeset 3938
93012e2a5d1d
parent 0
959103a6100f
permissions
-rw-r--r--

Added tag mips-jdk8u275-b01 for changeset eb6ee6a5f2fe

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug 6843077 8006775
     4  * @summary check for invalid annotatins given the target
     5  * @author Mahmood Ali
     6  * @compile/fail/ref=InvalidLocation.out -XDrawDiagnostics InvalidLocation.java
     7  */
     9 class InvalidLocation {
    10   void test(@A InvalidLocation this) {
    11   }
    12 }
    14 @java.lang.annotation.Target(java.lang.annotation.ElementType.TYPE)
    15 @interface A { }

mercurial