summaryrefslogtreecommitdiff
path: root/test/files/jvm5/annotations.check
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2007-06-24 19:53:39 +0000
committermihaylov <mihaylov@epfl.ch>2007-06-24 19:53:39 +0000
commit1b887be0a16c53e6e01b523abf5b963672b82861 (patch)
tree8974dd840d09a1fd90f5d5effea756fe7ac91d44 /test/files/jvm5/annotations.check
parent490050f68930960488305f8c44c16d33530f791b (diff)
downloadscala-1b887be0a16c53e6e01b523abf5b963672b82861.tar.gz
scala-1b887be0a16c53e6e01b523abf5b963672b82861.tar.bz2
scala-1b887be0a16c53e6e01b523abf5b963672b82861.zip
Added annotations tests for fields and methods
Diffstat (limited to 'test/files/jvm5/annotations.check')
-rw-r--r--test/files/jvm5/annotations.check15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/files/jvm5/annotations.check b/test/files/jvm5/annotations.check
index 9219c7bdb5..449d3d9ab8 100644
--- a/test/files/jvm5/annotations.check
+++ b/test/files/jvm5/annotations.check
@@ -2,7 +2,22 @@ class java.rmi.RemoteException
class java.io.IOException
@java.lang.Deprecated()
@test.SourceAnnotation(mails={scala@lists.epfl.ch,scala-lounge@lists.epfl.ch}, value=http://scala-lang.org)
+class Test4$Foo1
+
@test.SourceAnnotation(mails={you@bloodsuckers.com}, value=http://bloodsuckers.com)
+class Test4$Foo2
+
@test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=http://bloodsuckers.com)
+class Test4$Foo3
+
+@test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=file:///dev/null)
+private int Test4$Foo4.x
+
+@test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=file:///dev/null)
+public int Test4$Foo4.x()
+
+@test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=file:///dev/zero)
+public int Test4$Foo4.bar()
+
0
99