view test/tools/javac/T7042623.java @ 2550:b0c086cd4520

8026564: import changes from type-annotations forest Reviewed-by: jjg Contributed-by: wdietl@gmail.com, steve.sides@oracle.com
author jjg
date Tue, 15 Oct 2013 15:57:13 -0700
parents 6762754eb7c0
children
line wrap: on
line source

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

@interface Defined2 {}

@Undefined1(@Defined2)
class Test1{}