test/tools/javac/IllegalAnnotation.java

Fri, 29 Apr 2011 16:06:28 +0100

author
mcimadamore
date
Fri, 29 Apr 2011 16:06:28 +0100
changeset 992
dc3d9ef880a1
parent 611
4172cfff05f0
child 2525
2eb010b6cb22
permissions
-rw-r--r--

6550655: com.sun.tools.javac.code.Symbol$CompletionFailure
Summary: Accessing a non-existing enum constant from an annotation whose class is available results in an internal error
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 IllegalAnnotation.java
     8  */
     9 class IllegalAnnotation {
    10     {
    11         @interface SomeAnnotation { }
    12     }
    13 }

mercurial