summaryrefslogtreecommitdiff
path: root/test/files/run/constructors.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2005-10-05 12:07:40 +0000
committermichelou <michelou@epfl.ch>2005-10-05 12:07:40 +0000
commit7a23facb88aaccaec51ed8d2a81d17f8e989443c (patch)
tree06793da990901eaa96b5ef2216e9572b7e88110a /test/files/run/constructors.scala
parent018bd93918f4aed1952239e13700440904d579b3 (diff)
downloadscala-7a23facb88aaccaec51ed8d2a81d17f8e989443c.tar.gz
scala-7a23facb88aaccaec51ed8d2a81d17f8e989443c.tar.bz2
scala-7a23facb88aaccaec51ed8d2a81d17f8e989443c.zip
- updated header.
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);