blob: 0b2b8999538eed8979f70e3250e3c1d99cbdc2de [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<@A K> {
}
@Target(ElementType.TYPE_USE)
@interface A { int field(); }