9efc4c1a60
Issue a more direct, specific error when an annotation type is declared where it is disallowed Reviewed-by: sadayapalam
13 lines
302 B
Java
13 lines
302 B
Java
/**
|
|
* @test /nodynamiccopyright/
|
|
* @bug 5012028 6384539 8074364
|
|
* @summary javac crash when declare an annotation type illegally
|
|
*
|
|
* @compile/fail/ref=IllegalAnnotation.out -XDrawDiagnostics IllegalAnnotation.java
|
|
*/
|
|
class IllegalAnnotation {
|
|
{
|
|
@interface SomeAnnotation { }
|
|
}
|
|
}
|