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.
21 lines
414 B
Java
21 lines
414 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 4974524
|
|
* @summary compiler crash with ill-formed annotation
|
|
* @author gafter
|
|
*
|
|
* @compile/fail/ref=Syntax1.out -XDrawDiagnostics Syntax1.java
|
|
*/
|
|
|
|
package syntax1;
|
|
|
|
import java.lang.annotation.*;
|
|
import java.util.*;
|
|
|
|
@Documented
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target(ElementType.METHOD, ElementType.TYPE)
|
|
public @interface Syntax1
|
|
{
|
|
String elementName();
|
|
}
|