summaryrefslogtreecommitdiff
path: root/test/pending/pos/bug579.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/bug579.scala')
-rw-r--r--test/pending/pos/bug579.scala21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/pending/pos/bug579.scala b/test/pending/pos/bug579.scala
deleted file mode 100644
index a0806919e0..0000000000
--- a/test/pending/pos/bug579.scala
+++ /dev/null
@@ -1,21 +0,0 @@
-package my.webapp.bean.stuff;
-
-import scala.reflect.BeanProperty
-
-class MyBean {
- [BeanProperty]
- var frombulizer: String = _;
-}
-
-object Test extends Application {
-
- val x = new MyBean;
- x.frombulizer = "hello"
-
- x.setFrombulizer ("hola") // synthetic methods comes too late for typechecking this code
-
- val z:String = x.frombulizer
-
- val zz:String = x.getFrombulizer // synthetic methods comes too late for typechecking this code
-
-}