summaryrefslogtreecommitdiff
path: root/test/pending
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending')
-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
- }
-}