summaryrefslogtreecommitdiff
path: root/test/pending/pos
diff options
context:
space:
mode:
authorBurak Emir <emir@epfl.ch>2006-10-09 12:58:10 +0000
committerBurak Emir <emir@epfl.ch>2006-10-09 12:58:10 +0000
commitbff27eb916c2cbd9030b1fc91cd99115702de337 (patch)
treed9a4c8d0359fefcff2f01d664b3c7538fc4f1101 /test/pending/pos
parent705d9f23d38dfbeffc90bf24bad293272fa06cd2 (diff)
downloadscala-bff27eb916c2cbd9030b1fc91cd99115702de337.tar.gz
scala-bff27eb916c2cbd9030b1fc91cd99115702de337.tar.bz2
scala-bff27eb916c2cbd9030b1fc91cd99115702de337.zip
updated
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
+
}