summaryrefslogtreecommitdiff
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
parent018bd93918f4aed1952239e13700440904d579b3 (diff)
downloadscala-7a23facb88aaccaec51ed8d2a81d17f8e989443c.tar.gz
scala-7a23facb88aaccaec51ed8d2a81d17f8e989443c.tar.bz2
scala-7a23facb88aaccaec51ed8d2a81d17f8e989443c.zip
- updated header.
-rw-r--r--test/files/run/constructors.scala5
-rw-r--r--test/files/run/iq.scala9
-rw-r--r--test/files/run/mixins.scala5
3 files changed, 15 insertions, 4 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);
diff --git a/test/files/run/iq.scala b/test/files/run/iq.scala
index 87bbe45cd7..6d08db09f9 100644
--- a/test/files/run/iq.scala
+++ b/test/files/run/iq.scala
@@ -1,6 +1,9 @@
-/* $Id$
- * Test file for immutable queues.
- */
+//############################################################################
+// Test file for immutable queues.
+//############################################################################
+// $Id$
+
+//############################################################################
import scala.collection.immutable.Queue;
diff --git a/test/files/run/mixins.scala b/test/files/run/mixins.scala
index caab28fe26..dec9818b48 100644
--- a/test/files/run/mixins.scala
+++ b/test/files/run/mixins.scala
@@ -1,5 +1,10 @@
+//############################################################################
+// Mixins
+//############################################################################
// $Id$
+//############################################################################
+
// Test 1: "super" coming from mixins
object Test1 {