summaryrefslogtreecommitdiff
path: root/test/files/run/t3273.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t3273.scala')
-rw-r--r--test/files/run/t3273.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t3273.scala b/test/files/run/t3273.scala
index 379a8a29c1..a4dfc4b30c 100644
--- a/test/files/run/t3273.scala
+++ b/test/files/run/t3273.scala
@@ -1,7 +1,7 @@
object Test {
val num1: Stream[Int] = 1 #:: num1.map(_ + 1)
val num2: Stream[Int] = 1 #:: num2.iterator.map(_ + 1).toStream
-
+
def main(args: Array[String]): Unit = {
val x1 = (num1 take 10).toList
val x2 = (num2 take 10).toList