test/tools/javac/annotations/typeAnnotations/failures/common/arrays/MissingAnnotationValue.java

changeset 0
959103a6100f
equal deleted inserted replaced
-1:000000000000 0:959103a6100f
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 class MissingAnnotationValue {
9 void test() {
10 String @A [] s;
11 }
12 }
13
14 @interface A { int field(); }

mercurial