summaryrefslogtreecommitdiff
path: root/test/files/run/t5543.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t5543.scala')
-rw-r--r--test/files/run/t5543.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t5543.scala b/test/files/run/t5543.scala
index 9d9c645d7a..651bc7f2b2 100644
--- a/test/files/run/t5543.scala
+++ b/test/files/run/t5543.scala
@@ -10,7 +10,7 @@ object Test extends Function0[Int] {
}
object A {
val v = 5
- // should happily coexist with default getters
+ // should happily coexist with default getters, in a happier world
def init(x: Function0[Int] = Test.this)(a: Int = v, b: Int = v * x()) = x.toString +", "+ a +", "+ b
override def toString = "A"
}