summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2005-03-21 16:59:33 +0000
committermihaylov <mihaylov@epfl.ch>2005-03-21 16:59:33 +0000
commitf0e63b8bcbc9ff6be4fe6d372ffa324f4ab3adf9 (patch)
tree8fe187425552ab4559f9eba97a79057f5b769884 /test
parentb2ee76bdc5e00b25c42c84a85f268f0d656fb064 (diff)
downloadscala-f0e63b8bcbc9ff6be4fe6d372ffa324f4ab3adf9.tar.gz
scala-f0e63b8bcbc9ff6be4fe6d372ffa324f4ab3adf9.tar.bz2
scala-f0e63b8bcbc9ff6be4fe6d372ffa324f4ab3adf9.zip
Added a toList method to override the one from ...
Added a toList method to override the one from scala.Seq
Diffstat (limited to 'test')
-rw-r--r--test/files/dis/List.check1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/files/dis/List.check b/test/files/dis/List.check
index 7da3b40160..5b006f1764 100644
--- a/test/files/dis/List.check
+++ b/test/files/dis/List.check
@@ -8,6 +8,7 @@ sealed trait List[+a]() extends scala.Seq[a] with scala.ScalaObject {
def length: scala.Int;
def indices: scala.List[scala.Int];
def elements: scala.Iterator[a];
+ override def toList: scala.List[a];
def init: scala.List[a];
def last: a;
override def take(scala.Int): scala.List[a];