2011-06-01 11:25:50 -07:00
|
|
|
/*
|
|
|
|
* @test /nodynamiccopyright/
|
|
|
|
* @bug 7042623
|
|
|
|
* @summary Regression: javac silently crash when attributing non-existent annotation
|
2013-10-15 15:57:13 -07:00
|
|
|
* @ignore
|
2011-06-01 11:25:50 -07:00
|
|
|
* @compile/fail/ref=T7042623.out -XDrawDiagnostics -XDdev T7042623.java
|
|
|
|
*/
|
|
|
|
|
|
|
|
@interface Defined2 {}
|
|
|
|
|
|
|
|
@Undefined1(@Defined2)
|
|
|
|
class Test1{}
|
|
|
|
|