summaryrefslogtreecommitdiff
path: root/test/files/run/t3516.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t3516.scala')
-rw-r--r--test/files/run/t3516.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t3516.scala b/test/files/run/t3516.scala
index 82a97f27de..aa302ce85a 100644
--- a/test/files/run/t3516.scala
+++ b/test/files/run/t3516.scala
@@ -1,7 +1,7 @@
object Test {
def mkIterator = (1 to 5).iterator map (x => { println(x) ; x })
def mkInfinite = Iterator continually { println(1) ; 1 }
-
+
def main(args: Array[String]): Unit = {
// Stream is strict in its head so we should see 1 from each of them.
val s1 = mkIterator.toStream