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