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

Thu, 31 Aug 2017 15:17:03 +0800

author
aoqi
date
Thu, 31 Aug 2017 15:17:03 +0800
changeset 2525
2eb010b6cb22
parent 0
959103a6100f
permissions
-rw-r--r--

merge

     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  */
     8 class InvalidLocation {
     9   void innermethod() {
    10     class Inner<@A K> {}
    11   }
    12 }
    14 @java.lang.annotation.Target(java.lang.annotation.ElementType.TYPE)
    15 @interface A { }

mercurial