mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
12 lines
303 B
Java
12 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);
|
|
}
|