blob: 10644439f2551838f7d84e2ff546406304ce3812 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 5014305
* @summary Malformed annotation type with varargs parameter crashes javac
*
* @compile/fail/ref=BadAnnotation.out -XDrawDiagnostics BadAnnotation.java
*/
@BadAnnotation(1)
@interface BadAnnotation {
int value(int... illegal);
}