summaryrefslogtreecommitdiff
path: root/test/files/jvm/annotations.check
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@epfl.ch>2010-05-04 14:01:58 +0000
committerLukas Rytz <lukas.rytz@epfl.ch>2010-05-04 14:01:58 +0000
commit02ad6bb9666161e04e0b9ed3a8ffb6b0e2304596 (patch)
treedca5f24eb228049d81cec52d217d79050614cdbe /test/files/jvm/annotations.check
parent7abeacab53286233d4b150e713ca253c08f38bfd (diff)
downloadscala-02ad6bb9666161e04e0b9ed3a8ffb6b0e2304596.tar.gz
scala-02ad6bb9666161e04e0b9ed3a8ffb6b0e2304596.tar.bz2
scala-02ad6bb9666161e04e0b9ed3a8ffb6b0e2304596.zip
fix and test where constructor parameter annota...
fix and test where constructor parameter annotations end up. no review
Diffstat (limited to 'test/files/jvm/annotations.check')
-rw-r--r--test/files/jvm/annotations.check11
1 files changed, 10 insertions, 1 deletions
diff --git a/test/files/jvm/annotations.check b/test/files/jvm/annotations.check
index 128f8e8f6e..fe14289381 100644
--- a/test/files/jvm/annotations.check
+++ b/test/files/jvm/annotations.check
@@ -23,7 +23,7 @@ public Test4$Foo6(java.lang.String)
public Test4$Foo7()
@test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=constructor val)
-private final int Test4$Foo8.n
+public Test4$Foo8(int)
@test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=http://eppli.com)
private int Test4$Foo9.z
@@ -37,5 +37,14 @@ public int Test4$Foo9.x()
@test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=http://uppla.com)
public void Test4$Foo9.setY(int)
+@test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=on param 1)
+public Test4$Foo10(java.lang.String)
+
+@test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=on param 2)
+private final java.lang.String Test4$Foo11.name
+
+@test.SourceAnnotation(mails={bill.gates@bloodsuckers.com}, value=on param 3)
+public void Test4$Foo12.name_$eq(java.lang.String)
+
0
99