From 9c6a7ad81bdb632d3da144d58210b5903b86a3e4 Mon Sep 17 00:00:00 2001 From: Lukas Rytz Date: Fri, 18 May 2012 14:15:30 +0200 Subject: Fix SI-5544 Type-check annotations in a context with a localDummy owner --- test/files/neg/t5544.check | 4 ++++ test/files/neg/t5544/Api_1.scala | 8 ++++++++ test/files/neg/t5544/Test_2.scala | 3 +++ test/files/run/t5544.check | 1 + test/files/run/t5544/Api_1.scala | 8 ++++++++ test/files/run/t5544/Test_2.scala | 3 +++ 6 files changed, 27 insertions(+) create mode 100644 test/files/neg/t5544.check create mode 100644 test/files/neg/t5544/Api_1.scala create mode 100644 test/files/neg/t5544/Test_2.scala create mode 100644 test/files/run/t5544.check create mode 100644 test/files/run/t5544/Api_1.scala create mode 100644 test/files/run/t5544/Test_2.scala (limited to 'test') diff --git a/test/files/neg/t5544.check b/test/files/neg/t5544.check new file mode 100644 index 0000000000..d4113935a3 --- /dev/null +++ b/test/files/neg/t5544.check @@ -0,0 +1,4 @@ +Test_2.scala:2: error: value baz is not a member of object Api + Api.baz + ^ +one error found diff --git a/test/files/neg/t5544/Api_1.scala b/test/files/neg/t5544/Api_1.scala new file mode 100644 index 0000000000..77637f440a --- /dev/null +++ b/test/files/neg/t5544/Api_1.scala @@ -0,0 +1,8 @@ +import scala.annotation.StaticAnnotation + +class ann(val bar: Any) extends StaticAnnotation + +object Api { + @ann({def baz = "baz!!"}) + def foo = println("foo") +} diff --git a/test/files/neg/t5544/Test_2.scala b/test/files/neg/t5544/Test_2.scala new file mode 100644 index 0000000000..4c8c99cbc7 --- /dev/null +++ b/test/files/neg/t5544/Test_2.scala @@ -0,0 +1,3 @@ +object Test extends App { + Api.baz +} 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 +} -- cgit v1.2.3