From 8562015759b9f99547a78886e28da79e588eaf18 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Wed, 15 Sep 2010 23:12:32 +0000 Subject: Stream gets a specialized, extra-lazy Iterator ... Stream gets a specialized, extra-lazy Iterator so it can iterate as lazily as it traverses. Patch submitted by "Eastsun": probably not his real name, but that's what we call him. Closes #3273, review by prokopec. --- test/files/run/bug3273.scala | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/files/run/bug3273.scala (limited to 'test/files/run/bug3273.scala') diff --git a/test/files/run/bug3273.scala b/test/files/run/bug3273.scala new file mode 100644 index 0000000000..379a8a29c1 --- /dev/null +++ b/test/files/run/bug3273.scala @@ -0,0 +1,10 @@ +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 + assert(x1 == x2) + } +} -- cgit v1.2.3