summaryrefslogtreecommitdiff
path: root/test/files/run/t3502.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t3502.scala')
-rw-r--r--test/files/run/t3502.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/t3502.scala b/test/files/run/t3502.scala
index cc78e54c86..9492b2d4d4 100644
--- a/test/files/run/t3502.scala
+++ b/test/files/run/t3502.scala
@@ -5,7 +5,7 @@
// ticket #3502
object Test {
-
+
object GeneratePrimeFactorsLazy extends (Int => List[Int]) {
override def apply(n:Int) = {
val s = Stream.range(2, n / 2).filter(n % _ == 0)
@@ -13,12 +13,12 @@ object Test {
s.headOption.map(x => x :: apply(n / x)).getOrElse(List(n))
}
}
-
+
def main(args:Array[String]) {
// a prime number
//val num = 623456789
val num = 2796203
assert(GeneratePrimeFactorsLazy(num) == List(num))
}
-
+
}