langtools/test/tools/javac/typeAnnotations/failures/IndexArray.java
changeset 7093 67ef650c64e0
parent 7092 e575c68c6393
parent 7085 2e876e59938a
child 7094 fa550ae6eb32
child 7222 f6fcecbb6a24
--- a/langtools/test/tools/javac/typeAnnotations/failures/IndexArray.java	Fri Oct 29 16:00:29 2010 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-/*
- * @test /nodynamiccopyright/
- * @bug 6843077
- * @summary test indexing of an array
- * @author Mahmood Ali
- * @compile/fail/ref=IndexArray.out -XDrawDiagnostics -source 1.7 IndexArray.java
- */
-class IndexArray {
-  int[] var;
-  int a = var @A [1];
-}
-
-@interface A { }