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, 0 insertions, 16 deletions
diff --git a/test/pending/pos/t1782/Test_1.scala b/test/pending/pos/t1782/Test_1.scala
deleted file mode 100644
index 6467a74c29..0000000000
--- a/test/pending/pos/t1782/Test_1.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-@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"
-}