summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2006-11-06 08:00:41 +0000
committermihaylov <mihaylov@epfl.ch>2006-11-06 08:00:41 +0000
commita4e49ea5acfcbdf2d8b0e5d55333562cf2848c67 (patch)
tree4a57536c834dd3cb9dccbe3320c0b107a9265b23 /test/files/run
parent8e56e0e55bfacfd23fae87ed2f07151e2240aeaa (diff)
downloadscala-a4e49ea5acfcbdf2d8b0e5d55333562cf2848c67.tar.gz
scala-a4e49ea5acfcbdf2d8b0e5d55333562cf2848c67.tar.bz2
scala-a4e49ea5acfcbdf2d8b0e5d55333562cf2848c67.zip
Improved class-level value initialization
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/bug428.check12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/files/run/bug428.check b/test/files/run/bug428.check
index 21bef2f8d3..1e933a9b78 100644
--- a/test/files/run/bug428.check
+++ b/test/files/run/bug428.check
@@ -1,8 +1,8 @@
-Foo 1: a = 0, b = 0, x = 0, y = 0
-Foo 2: a = 2, b = 0, x = 0, y = 0
-Foo 3: a = 2, b = 3, x = 0, y = 0
-Foo 4: a = 2, b = 3, x = 0, y = 0
-Foo 5: a = 2, b = 3, x = 0, y = 0
-Bar 1: a = 2, b = 3, x = 0, y = 0
+Foo 1: a = 2, b = 0, x = 5, y = 0
+Foo 2: a = 2, b = 0, x = 5, y = 0
+Foo 3: a = 2, b = 3, x = 5, y = 0
+Foo 4: a = 2, b = 3, x = 5, y = 0
+Foo 5: a = 2, b = 3, x = 5, y = 0
+Bar 1: a = 2, b = 3, x = 5, y = 0
Bar 2: a = 2, b = 3, x = 5, y = 0
Bar 3: a = 2, b = 3, x = 5, y = 7