summaryrefslogtreecommitdiff
path: root/test/files/jvm5/SourceAnnotation.java
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2007-02-21 16:43:30 +0000
committermihaylov <mihaylov@epfl.ch>2007-02-21 16:43:30 +0000
commitcb7f66a22c9167a7e8ffce042a4bf1c5c9849a89 (patch)
tree220bf1701d5f55c7e3d902d5a9cc75e035fddbca /test/files/jvm5/SourceAnnotation.java
parent5c7809eab475a1bb0841e0be919ebfa3b283ef8e (diff)
downloadscala-cb7f66a22c9167a7e8ffce042a4bf1c5c9849a89.tar.gz
scala-cb7f66a22c9167a7e8ffce042a4bf1c5c9849a89.tar.bz2
scala-cb7f66a22c9167a7e8ffce042a4bf1c5c9849a89.zip
Fixed a name clash in the test suite (jvm/unitt...
Fixed a name clash in the test suite (jvm/unittest_io vs jvm5/attributes)
Diffstat (limited to 'test/files/jvm5/SourceAnnotation.java')
-rw-r--r--test/files/jvm5/SourceAnnotation.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/files/jvm5/SourceAnnotation.java b/test/files/jvm5/SourceAnnotation.java
new file mode 100644
index 0000000000..a124ee3ee1
--- /dev/null
+++ b/test/files/jvm5/SourceAnnotation.java
@@ -0,0 +1,9 @@
+package test;
+
+import java.lang.annotation.*;
+
+@Retention(value=RetentionPolicy.RUNTIME)
+public @interface SourceAnnotation {
+ public String url();
+ public String mail();
+}