test/tools/javac/typeAnnotations/failures/common/innertypeparams/MissingAnnotationValue.java

Tue, 26 Jan 2010 11:15:49 -0800

author
jjg
date
Tue, 26 Jan 2010 11:15:49 -0800
changeset 479
da0e3e2dd3ef
parent 384
ed31953ca025
permissions
-rw-r--r--

6919944: incorrect position given for duplicate annotation value error
Reviewed-by: darcy

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug 6843077
     4  * @summary check for missing annotation value
     5  * @author Mahmood Ali
     6  * @compile/fail/ref=MissingAnnotationValue.out -XDrawDiagnostics -source 1.7 MissingAnnotationValue.java
     7  */
     8 class MissingAnnotationValue {
     9   void innermethod() {
    10     class Inner<@A K> { }
    11   }
    12 }
    14 @interface A { int field(); }

mercurial