aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t6628.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t6628.scala')
-rw-r--r--tests/pending/run/t6628.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/pending/run/t6628.scala b/tests/pending/run/t6628.scala
deleted file mode 100644
index bc87c1250..000000000
--- a/tests/pending/run/t6628.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-object Test {
- def coll = new Traversable[String] {
- override def foreach[U](f:String=>U): Unit = { f("1") }
- }
- val dropped = coll.view drop 1
-
- def main(args: Array[String]): Unit = {
- println(dropped.isEmpty)
- println(dropped.force.isEmpty)
- }
-}