summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2012-05-18 09:46:42 -0700
committerAdriaan Moors <adriaan.moors@epfl.ch>2012-05-18 09:46:42 -0700
commit6765cb0af5a9f9cedd5c71b052aa963d9d52e8dc (patch)
tree2de1c9593c456cf95d3f8bd32977797bdd7d6573 /test/files/run
parent5639d82cd27d5c86cb5ea27410676935fc6c8635 (diff)
parent9c6a7ad81bdb632d3da144d58210b5903b86a3e4 (diff)
downloadscala-6765cb0af5a9f9cedd5c71b052aa963d9d52e8dc.tar.gz
scala-6765cb0af5a9f9cedd5c71b052aa963d9d52e8dc.tar.bz2
scala-6765cb0af5a9f9cedd5c71b052aa963d9d52e8dc.zip
Merge pull request #572 from lrytz/wip/t5544
Fix SI-5544
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/t5544.check1
-rw-r--r--test/files/run/t5544/Api_1.scala8
-rw-r--r--test/files/run/t5544/Test_2.scala3
3 files changed, 12 insertions, 0 deletions
diff --git a/test/files/run/t5544.check b/test/files/run/t5544.check
new file mode 100644
index 0000000000..257cc5642c
--- /dev/null
+++ b/test/files/run/t5544.check
@@ -0,0 +1 @@
+foo
diff --git a/test/files/run/t5544/Api_1.scala b/test/files/run/t5544/Api_1.scala
new file mode 100644
index 0000000000..b4c92864de
--- /dev/null
+++ b/test/files/run/t5544/Api_1.scala
@@ -0,0 +1,8 @@
+import scala.annotation.StaticAnnotation
+
+class ann(val bar: Any) extends StaticAnnotation
+
+object Api {
+ @ann({def foo = "foo!!"})
+ def foo = println("foo")
+}
diff --git a/test/files/run/t5544/Test_2.scala b/test/files/run/t5544/Test_2.scala
new file mode 100644
index 0000000000..285f8959e0
--- /dev/null
+++ b/test/files/run/t5544/Test_2.scala
@@ -0,0 +1,3 @@
+object Test extends App {
+ Api.foo
+}