blob: 8daca363e7fbf7cb2617314e759e73373b5a49ba [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 6843077 8006775
* @summary check for missing annotation value
* @author Mahmood Ali
* @compile/fail/ref=MissingAnnotationValue.out -XDrawDiagnostics MissingAnnotationValue.java
*/
import java.lang.annotation.*;
class MissingAnnotationValue<K> {
MissingAnnotationValue<@A String> l;
}
@Target(ElementType.TYPE_USE)
@interface A { int field(); }