aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t0082.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t0082.scala')
-rw-r--r--tests/untried/pos/t0082.scala18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/untried/pos/t0082.scala b/tests/untried/pos/t0082.scala
deleted file mode 100644
index 2b365ca33..000000000
--- a/tests/untried/pos/t0082.scala
+++ /dev/null
@@ -1,18 +0,0 @@
-
-object Main {
-
- def min0[A](less: (A, A) => Boolean, xs: List[A]): Option[A] = xs match {
- case List() => None
- case List(x) => Some(x)
-// case x :: Nil => Some(x)
- case y :: ys => (min0(less, ys): @unchecked) match {
- case Some(m) => if (less(y, m)) Some(y) else Some(m)
- }
- }
-
- def min(xs: List[Int]) = min0((x: Int, y: Int) => x < y, xs);
-
- def main(args: Array[String]) =
- Console.println(min(List()));
-
-}