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.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/pending/pos/bug579.scala b/test/pending/pos/bug579.scala
new file mode 100644
index 0000000000..9b4575835b
--- /dev/null
+++ b/test/pending/pos/bug579.scala
@@ -0,0 +1,15 @@
+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"
+
+}