blob: 4043ed6bc50537250f7e381093f227cadf7bef54 [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
*/
class MissingAnnotationValue {
void test(@A MissingAnnotationValue this) { }
}
@interface A { int field(); }