langtools/test/tools/javac/T7042623.java
author jjg
Wed, 01 Jun 2011 11:25:50 -0700
changeset 9814 978b696e85ad
child 21041 99f5e5e97425
permissions -rw-r--r--
7042623: Regression: javac silently crash when attributing non-existent annotation Reviewed-by: mcimadamore

/*
 * @test /nodynamiccopyright/
 * @bug 7042623
 * @summary Regression: javac silently crash when attributing non-existent annotation
 * @compile/fail/ref=T7042623.out -XDrawDiagnostics -XDdev T7042623.java
 */

@interface Defined2 {}

@Undefined1(@Defined2)
class Test1{}