test/tools/javac/IllegalAnnotation.java

Fri, 24 Oct 2008 12:46:34 +0100

author
mcimadamore
date
Fri, 24 Oct 2008 12:46:34 +0100
changeset 161
ddd75a295501
parent 1
9a66ca7c79fa
child 611
4172cfff05f0
permissions
-rw-r--r--

6758789: Some method resolution diagnostic should be improved
Summary: Recent work on diagnostics left out some resolution corner cases
Reviewed-by: jjg

     1 /**
     2  * @test  /nodynamiccopyright/
     3  * @bug 5012028 6384539
     4  * @summary javac crash when declare an annotation type illegally
     5  *
     6  * @compile/fail IllegalAnnotation.java
     7  * @compile/fail/ref=IllegalAnnotation.out -XDdev -XDrawDiagnostics -XDstdout IllegalAnnotation.java
     8  */
     9 class IllegalAnnotation {
    10     {
    11         @interface SomeAnnotation { }
    12     }
    13 }

mercurial