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
318 B
Java
12 lines
318 B
Java
/**
|
|
* @test /nodynamiccopyright/
|
|
* @bug 5012028 6384539 8074364 8250741 8246774
|
|
* @summary javac crash when declare an annotation type illegally
|
|
*
|
|
* @compile/fail/ref=IllegalAnnotation.out -XDrawDiagnostics IllegalAnnotation.java
|
|
*/
|
|
class IllegalAnnotation {
|
|
{
|
|
@interface SomeAnnotation { }
|
|
}
|
|
}
|