langtools/test/tools/javac/annotations/typeAnnotations/failures/IndexArray.java
changeset 15385 ee1eebe7e210
child 21041 99f5e5e97425
equal deleted inserted replaced
15384:5a8d00abf076 15385:ee1eebe7e210
       
     1 /*
       
     2  * @test /nodynamiccopyright/
       
     3  * @bug 6843077 8006775
       
     4  * @summary test indexing of an array
       
     5  * @author Mahmood Ali
       
     6  * @compile/fail/ref=IndexArray.out -XDrawDiagnostics IndexArray.java
       
     7  */
       
     8 class IndexArray {
       
     9   int[] var;
       
    10   int a = var @A [1];
       
    11 }
       
    12 
       
    13 @interface A { }