langtools/test/tools/javac/IllegalAnnotation.java
author darcy
Sun, 14 Nov 2010 07:16:46 -0800 (2010-11-14)
changeset 7213 912fdd70fd2a
parent 6150 d055fa8ced62
child 30713 4a01965154be
permissions -rw-r--r--
6991528: Support making Throwable.suppressedExceptions immutable Reviewed-by: mcimadamore
/**
 * @test  /nodynamiccopyright/
 * @bug 5012028 6384539
 * @summary javac crash when declare an annotation type illegally
 *
 * @compile/fail IllegalAnnotation.java
 * @compile/fail/ref=IllegalAnnotation.out -XDdev -XDrawDiagnostics IllegalAnnotation.java
 */
class IllegalAnnotation {
    {
        @interface SomeAnnotation { }
    }
}