summaryrefslogtreecommitdiff
path: root/test/files/run/t498.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t498.scala')
-rw-r--r--test/files/run/t498.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/files/run/t498.scala b/test/files/run/t498.scala
index b4ede951f0..5c10e6630f 100644
--- a/test/files/run/t498.scala
+++ b/test/files/run/t498.scala
@@ -1,3 +1,6 @@
+
+import scala.language.postfixOps
+
object Test extends App {
// the function passed to flatMap produces lots of empty streams, but this should not overflow the stack
val res = Stream.from(1).flatMap(i => if (i < 3000) Stream.empty else List(1))