aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t3508.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t3508.scala')
-rw-r--r--tests/pending/run/t3508.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/pending/run/t3508.scala b/tests/pending/run/t3508.scala
deleted file mode 100644
index 80ef89a61..000000000
--- a/tests/pending/run/t3508.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-import collection.immutable._
-
-
-// ticket #3508
-object Test {
- def main(args: Array[String]): Unit = {
- assert(Stream.tabulate(123)(_ + 1).toList == List.tabulate(123)(_ + 1))
- }
-}