22 lines
414 B
Java
Raw Normal View History

2007-12-01 00:00:00 +00:00
/*
* @test /nodynamiccopyright/
2007-12-01 00:00:00 +00:00
* @bug 4974524
* @summary compiler crash with ill-formed annotation
* @author gafter
*
* @compile/fail/ref=Syntax1.out -XDrawDiagnostics Syntax1.java
2007-12-01 00:00:00 +00:00
*/
package syntax1;
import java.lang.annotation.*;
import java.util.*;
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD, ElementType.TYPE)
public @interface Syntax1
{
String elementName();
}