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.
13 lines
300 B
Java
13 lines
300 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 4993451
|
|
* @summary compiler crash with malformed annotations
|
|
* @author gafter
|
|
*
|
|
* @compile/fail/ref=Recovery.out -XDrawDiagnostics Recovery.java
|
|
*/
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
@RetentionPolicy(RetentionPolicy.RUNTIME)
|
|
public @interface Recovery {}
|