aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs193/333274/ma2/Annotation3.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs193/333274/ma2/Annotation3.java')
-rw-r--r--tests/bugs193/333274/ma2/Annotation3.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/bugs193/333274/ma2/Annotation3.java b/tests/bugs193/333274/ma2/Annotation3.java
new file mode 100644
index 000000000..1b998875f
--- /dev/null
+++ b/tests/bugs193/333274/ma2/Annotation3.java
@@ -0,0 +1,13 @@
+package ma2;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+@Target( { ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.ANNOTATION_TYPE })
+@Retention(RetentionPolicy.RUNTIME)
+@Documented
+public @interface Annotation3 {
+}