aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t3580.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t3580.scala')
-rw-r--r--tests/pending/run/t3580.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/pending/run/t3580.scala b/tests/pending/run/t3580.scala
deleted file mode 100644
index f91d5a24f..000000000
--- a/tests/pending/run/t3580.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-object Test {
-
- class Empty extends Traversable[Nothing] {
- def foreach[U](f: Nothing => U): Unit = {}
- }
-
- def main(args: Array[String]): Unit = {
- val t = new Empty
- t.toStream
- }
-
-}