summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/infiniteloop.check1
-rw-r--r--test/files/run/infiniteloop.scala13
2 files changed, 0 insertions, 14 deletions
diff --git a/test/files/run/infiniteloop.check b/test/files/run/infiniteloop.check
deleted file mode 100644
index 6f8cf6e4d9..0000000000
--- a/test/files/run/infiniteloop.check
+++ /dev/null
@@ -1 +0,0 @@
-Stream(512, 256, 128, 64, 32, 16, 8, 4, 2, 1)
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
-}