summaryrefslogtreecommitdiff
path: root/test/files/run/Course-2002-05.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2006-06-21 10:36:06 +0000
committerMartin Odersky <odersky@gmail.com>2006-06-21 10:36:06 +0000
commit2933e3f3cce9221a1fbe76b434957f8affb54548 (patch)
treeafce1c862f9f24d3d456a31edd1c1b0c59b7663b /test/files/run/Course-2002-05.scala
parentb444420b5b136e8f6e3439c100fbcc5236e0100b (diff)
downloadscala-2933e3f3cce9221a1fbe76b434957f8affb54548.tar.gz
scala-2933e3f3cce9221a1fbe76b434957f8affb54548.tar.bz2
scala-2933e3f3cce9221a1fbe76b434957f8affb54548.zip
Fixed test files after syntax change for closures.
Diffstat (limited to 'test/files/run/Course-2002-05.scala')
-rw-r--r--test/files/run/Course-2002-05.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/Course-2002-05.scala b/test/files/run/Course-2002-05.scala
index c761f88f5d..abf9978ac6 100644
--- a/test/files/run/Course-2002-05.scala
+++ b/test/files/run/Course-2002-05.scala
@@ -21,7 +21,7 @@ object M0 {
xs
else {
val pivot = xs.head;
- val sub = partition(xs.tail, (elem : a => less(elem, pivot)));
+ val sub = partition(xs.tail, { elem : a => less(elem, pivot) });
quicksort(less)(sub._1) ::: List(pivot) ::: quicksort(less)(sub._2)
}
}
@@ -61,7 +61,7 @@ object M1 {
xs
else {
val pivot = xs.head;
- val sub = partition(xs.tail, (elem : a => less(elem, pivot)));
+ val sub = partition(xs.tail, (elem : a) => less(elem, pivot));
quicksort(less)(sub._1) ::: List(pivot) ::: quicksort(less)(sub._2)
}
}
@@ -97,7 +97,7 @@ object M2 {
else {
val x = s.head;
val withoutX = powerset(s.tail);
- withoutX ::: withoutX.map(s1 : List[a] => x::s1)
+ withoutX ::: withoutX.map { s1 : List[a] => x::s1 }
}
}