summaryrefslogtreecommitdiff
path: root/test/files/run/infiniteloop.scala
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2008-11-06 17:26:52 +0000
committerIulian Dragos <jaguarul@gmail.com>2008-11-06 17:26:52 +0000
commit7e736ed0a8109f00d721cb1a78152c91ef133b2d (patch)
treebc29db92f2615a58d8ed7d6c18dbc84eb8fcdc8e /test/files/run/infiniteloop.scala
parent67935e969fb3315e209b52600bbafff97598a20e (diff)
downloadscala-7e736ed0a8109f00d721cb1a78152c91ef133b2d.tar.gz
scala-7e736ed0a8109f00d721cb1a78152c91ef133b2d.tar.bz2
scala-7e736ed0a8109f00d721cb1a78152c91ef133b2d.zip
Fixed optimiser bugs, now all tests pass when u...
Fixed optimiser bugs, now all tests pass when using the optimised compiler.
Diffstat (limited to 'test/files/run/infiniteloop.scala')
-rw-r--r--test/files/run/infiniteloop.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/files/run/infiniteloop.scala b/test/files/run/infiniteloop.scala
new file mode 100644
index 0000000000..f15674a676
--- /dev/null
+++ b/test/files/run/infiniteloop.scala
@@ -0,0 +1,13 @@
+/** 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
+}