langtools/test/tools/javac/T7042623.java
author amurillo
Mon, 11 Apr 2016 20:38:38 -0700
changeset 37298 8df0cc9da41e
parent 21715 f4afc37a97a2
permissions -rw-r--r--
8154028: Several hotspot tests need to be updated after 8153737 (Unsupported Module) Reviewed-by: darcy, kvn

/*
 * @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{}