mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
12 lines
275 B
Java
12 lines
275 B
Java
/*
|
|
* @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{}
|
|
|