summaryrefslogtreecommitdiff
path: root/test/files/run/t4697.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t4697.scala')
-rw-r--r--test/files/run/t4697.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t4697.scala b/test/files/run/t4697.scala
index 728d095ff8..95592172e0 100644
--- a/test/files/run/t4697.scala
+++ b/test/files/run/t4697.scala
@@ -1,7 +1,7 @@
object Test {
var st = Stream(0)
for (i <- 1 to 10000) st = i +: st
-
+
def main(args: Array[String]): Unit = {
println(st.take(10000).sum)
}