64622d5d74
Reviewed-by: jjg
13 lines
294 B
Java
13 lines
294 B
Java
/**
|
|
* @test /nodynamiccopyright/
|
|
* @bug 5012028 6384539
|
|
* @summary javac crash when declare an annotation type illegally
|
|
*
|
|
* @compile/fail/ref=IllegalAnnotation.out -XDrawDiagnostics IllegalAnnotation.java
|
|
*/
|
|
class IllegalAnnotation {
|
|
{
|
|
@interface SomeAnnotation { }
|
|
}
|
|
}
|