summaryrefslogtreecommitdiff
path: root/test/partest-tests/run/streamWithFilter.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/partest-tests/run/streamWithFilter.scala')
-rw-r--r--test/partest-tests/run/streamWithFilter.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/partest-tests/run/streamWithFilter.scala b/test/partest-tests/run/streamWithFilter.scala
index cb919d4f55..7f8f9a09d2 100644
--- a/test/partest-tests/run/streamWithFilter.scala
+++ b/test/partest-tests/run/streamWithFilter.scala
@@ -4,7 +4,7 @@ object Test {
def isBuzz(x: Int) = x % 5 == 0
// next line will run forever if withFilter isn't doing its thing.
val fizzbuzzes = for (n <- nums ; if isFizz(n) ; if isBuzz(n)) yield n
-
+
def main(args: Array[String]): Unit = {
fizzbuzzes take 5 foreach println
}