MissingAnnotationValue.java revision 1754:ddb4a2bfcd82
1/*
2 * @test /nodynamiccopyright/
3 * @bug 6843077 8006775
4 * @summary check for missing annotation value
5 * @author Mahmood Ali
6 * @compile/fail/ref=MissingAnnotationValue.out -XDrawDiagnostics MissingAnnotationValue.java
7 */
8
9import java.lang.annotation.ElementType;
10import java.lang.annotation.Target;
11
12class MissingAnnotationValue {
13  void test() {
14    new @A String();
15  }
16}
17
18@Target(ElementType.TYPE_USE)
19@interface A { int field(); }
20