From 40a3b94fd8380c120634742239c5128e3fce664c Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Mon, 20 Mar 2017 17:41:41 +0100 Subject: Update check file --- tests/run/paramForwarding.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/run/paramForwarding.scala') diff --git a/tests/run/paramForwarding.scala b/tests/run/paramForwarding.scala index 61466b621..6fe80a230 100644 --- a/tests/run/paramForwarding.scala +++ b/tests/run/paramForwarding.scala @@ -19,7 +19,7 @@ class Bz extends A(42) { val theValueInBz = theValue } -// C does not contains a field C.theValue$$local, it contains +// C does not contain a field C.theValue$$local, it contains // a getter C.theValue() which only calls super.theValue() class C(override val theValue: Int) extends A(theValue) @@ -36,8 +36,8 @@ class NonVal(theValue: Int) extends A(theValue) { // X.theValue() which overrides A.theValue() class X(override val theValue: Int) extends NonVal(0) -// Y contains a field Y.theValue$$local accessible using the getter -// Y.theValue() which overrides A.theValue() +// Y does not contain a field Y.theValue$$local, it contains +// a getter Y.theValue() which only calls super.theValue() class Y(override val theValue: Int) extends NonVal(theValue) -- cgit v1.2.3