summaryrefslogtreecommitdiff
path: root/test/files/run/infiniteloop.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/infiniteloop.scala')
-rw-r--r--test/files/run/infiniteloop.scala13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/files/run/infiniteloop.scala b/test/files/run/infiniteloop.scala
deleted file mode 100644
index f15674a676..0000000000
--- a/test/files/run/infiniteloop.scala
+++ /dev/null
@@ -1,13 +0,0 @@
-/** Tests the optimiser (not to loop on 'reverse'). */
-
-object Test extends Application {
- def foo {
- val s3 = Stream.range(1, 1000) //100000 (ticket #153: Stackoverflow)
-
- // ticket #153
- def powers(x: Int) = if ((x&(x-1)) == 0) Some(x) else None
- println(s3.flatMap(powers).reverse)
- }
-
- foo
-}