test/tools/javac/IllegalAnnotation.java

Tue, 13 Jul 2010 19:17:55 -0700

author
jjg
date
Tue, 13 Jul 2010 19:17:55 -0700
changeset 605
0e1fab5cffc8
parent 1
9a66ca7c79fa
child 611
4172cfff05f0
permissions
-rw-r--r--

6968434: test CheckResourceKeys fails on control builds
Reviewed-by: darcy

     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