aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t3496.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t3496.scala')
-rw-r--r--tests/pending/run/t3496.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/pending/run/t3496.scala b/tests/pending/run/t3496.scala
deleted file mode 100644
index 35bc5db24..000000000
--- a/tests/pending/run/t3496.scala
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-// ticket #3496
-object Test {
-
- def main(args: Array[String]): Unit = {
- val s = Stream.from(1)
- s.take(5)
- s.drop(5)
- s.splitAt(5)
- }
-
-}