summaryrefslogtreecommitdiff
path: root/test/pending/run
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-09-01 22:05:38 +0000
committerPaul Phillips <paulp@improving.org>2009-09-01 22:05:38 +0000
commit729ae785e9a06da1c0c9bfb6d4b5a00865059dab (patch)
treec7f1fd0cc4c0756fd258f6684dfb2b7752d9cee0 /test/pending/run
parent3eb22b8eb1db6a73c8afc05f80dcb33d3c46ee15 (diff)
downloadscala-729ae785e9a06da1c0c9bfb6d4b5a00865059dab.tar.gz
scala-729ae785e9a06da1c0c9bfb6d4b5a00865059dab.tar.bz2
scala-729ae785e9a06da1c0c9bfb6d4b5a00865059dab.zip
Moved test case for now-fixed #2027 into files.
Diffstat (limited to 'test/pending/run')
-rw-r--r--test/pending/run/t2027.scala7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/pending/run/t2027.scala b/test/pending/run/t2027.scala
deleted file mode 100644
index 0fe41e5c74..0000000000
--- a/test/pending/run/t2027.scala
+++ /dev/null
@@ -1,7 +0,0 @@
-
-object Test {
- def main(args: Array[String]) {
- def fibs: Stream[Int] = Stream.cons(0, Stream.cons(1, fibs.zip(fibs.tail).map(p => p._1 + p._2)))
- fibs(2) // stack overflow
- }
-}