summaryrefslogtreecommitdiff
path: root/test/files/run/t6548/JavaAnnotationWithNestedEnum_1.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t6548/JavaAnnotationWithNestedEnum_1.java')
-rw-r--r--test/files/run/t6548/JavaAnnotationWithNestedEnum_1.java17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/files/run/t6548/JavaAnnotationWithNestedEnum_1.java b/test/files/run/t6548/JavaAnnotationWithNestedEnum_1.java
deleted file mode 100644
index 32004de537..0000000000
--- a/test/files/run/t6548/JavaAnnotationWithNestedEnum_1.java
+++ /dev/null
@@ -1,17 +0,0 @@
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-@Target({ElementType.ANNOTATION_TYPE, ElementType.METHOD, ElementType.FIELD,
- ElementType.TYPE, ElementType.PARAMETER})
-@Retention(RetentionPolicy.RUNTIME)
-public @interface JavaAnnotationWithNestedEnum_1
-{
- public Value value() default Value.VALUE;
-
- public enum Value
- {
- VALUE;
- }
-} \ No newline at end of file