jdk-24/test/langtools/tools/javac/BadAnnotation.java
2017-09-12 19:03:39 +02:00

13 lines
303 B
Java

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