langtools/test/tools/javac/typeAnnotations/failures/IncompleteArray.java
changeset 7072 4863847e93a5
parent 7071 8bcda461a06a
child 7073 c27644ae5855
--- a/langtools/test/tools/javac/typeAnnotations/failures/IncompleteArray.java	Tue Oct 19 11:47:17 2010 +0530
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-/*
- * @test /nodynamiccopyright/
- * @bug 6843077
- * @summary test incomplete array declaration
- * @author Mahmood Ali
- * @compile/fail/ref=IncompleteArray.out -XDrawDiagnostics -source 1.7 IncompleteArray.java
- */
-class IncompleteArray {
-  int @A [] @A var;
-}
-
-@interface A { }