summaryrefslogtreecommitdiff
path: root/test/files/run/iterator-iterate-lazy.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/iterator-iterate-lazy.scala')
-rw-r--r--test/files/run/iterator-iterate-lazy.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/iterator-iterate-lazy.scala b/test/files/run/iterator-iterate-lazy.scala
index 73886f192b..92b170062e 100644
--- a/test/files/run/iterator-iterate-lazy.scala
+++ b/test/files/run/iterator-iterate-lazy.scala
@@ -1,5 +1,5 @@
object Test {
def main(args: Array[String]): Unit = {
- Iterator.iterate(1 to 5 toList)(_.tail).takeWhile(_.nonEmpty).map(_.head).toList
+ Iterator.iterate((1 to 5).toList)(_.tail).takeWhile(_.nonEmpty).map(_.head).toList
}
}