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

Tue, 12 Mar 2013 17:39:34 +0100

author
jfranck
date
Tue, 12 Mar 2013 17:39:34 +0100
changeset 1629
f427043f8c65
parent 0
959103a6100f
permissions
-rw-r--r--

7196531: Duplicate error messages on repeating annotations
Reviewed-by: jjg

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

mercurial