summaryrefslogtreecommitdiff
path: root/test/files/run/constructors.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/constructors.scala')
-rw-r--r--test/files/run/constructors.scala5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/files/run/constructors.scala b/test/files/run/constructors.scala
index e85f3b8667..6f2c6f6ce7 100644
--- a/test/files/run/constructors.scala
+++ b/test/files/run/constructors.scala
@@ -1,6 +1,9 @@
+//############################################################################
+// Test constructors, including multiple ones.
+//############################################################################
// $Id$
-// Test constructors, including multiple ones.
+//############################################################################
class A(x: Int, y: Int) {
def this(x: Int) = this(x, x);