Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
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);
|
|
}
|