summaryrefslogtreecommitdiff
path: root/test/pending/pos
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos')
-rw-r--r--test/pending/pos/bug579.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/pending/pos/bug579.scala b/test/pending/pos/bug579.scala
index 9b4575835b..a0806919e0 100644
--- a/test/pending/pos/bug579.scala
+++ b/test/pending/pos/bug579.scala
@@ -12,4 +12,10 @@ 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
+
}