jdk-24/test/langtools/tools/javac/BadAnnotation.java

13 lines
303 B
Java
Raw Normal View History

2007-12-01 00:00:00 +00:00
/*
* @test /nodynamiccopyright/
2007-12-01 00:00:00 +00:00
* @bug 5014305
* @summary Malformed annotation type with varargs parameter crashes javac
*
* @compile/fail/ref=BadAnnotation.out -XDrawDiagnostics BadAnnotation.java
2007-12-01 00:00:00 +00:00
*/
@BadAnnotation(1)
@interface BadAnnotation {
int value(int... illegal);
}