summaryrefslogtreecommitdiff
path: root/test/files/run/t3236/ShortAnnotation.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t3236/ShortAnnotation.java')
-rw-r--r--test/files/run/t3236/ShortAnnotation.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/run/t3236/ShortAnnotation.java b/test/files/run/t3236/ShortAnnotation.java
new file mode 100644
index 0000000000..f0a35892c7
--- /dev/null
+++ b/test/files/run/t3236/ShortAnnotation.java
@@ -0,0 +1,7 @@
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+
+@Retention(RetentionPolicy.RUNTIME)
+public @interface ShortAnnotation {
+ short value();
+}