langtools/test/tools/javac/typeAnnotations/failures/common/rest/DuplicateAnnotationValue.java
changeset 7093 67ef650c64e0
parent 7092 e575c68c6393
parent 7085 2e876e59938a
child 7094 fa550ae6eb32
child 7222 f6fcecbb6a24
--- a/langtools/test/tools/javac/typeAnnotations/failures/common/rest/DuplicateAnnotationValue.java	Fri Oct 29 16:00:29 2010 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-/*
- * @test /nodynamiccopyright/
- * @bug 6843077
- * @summary check for Duplicate annotation value
- * @author Mahmood Ali
- * @compile/fail/ref=DuplicateAnnotationValue.out -XDrawDiagnostics -source 1.7 DuplicateAnnotationValue.java
- */
-class DuplicateAnnotationValue {
-  void test() {
-    new @A String();
-  }
-}
-
-@interface A { int field(); }