summaryrefslogtreecommitdiff
path: root/test/pending/pos/t1782/Test_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/t1782/Test_1.scala')
-rw-r--r--test/pending/pos/t1782/Test_1.scala16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/pending/pos/t1782/Test_1.scala b/test/pending/pos/t1782/Test_1.scala
new file mode 100644
index 0000000000..6467a74c29
--- /dev/null
+++ b/test/pending/pos/t1782/Test_1.scala
@@ -0,0 +1,16 @@
+@ImplementedBy(classOf[Provider])
+trait Service {
+ def someMethod()
+}
+
+class Provider
+ extends Service
+{
+ // test enumeration java annotations
+ @Ann(Days.Friday) def someMethod() = ()
+
+ // #2103
+ @scala.beans.BeanProperty
+ @Ann(value = Days.Sunday)
+ val t2103 = "test"
+}