aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t4365/b_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t4365/b_1.scala')
-rw-r--r--tests/pending/pos/t4365/b_1.scala24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/pending/pos/t4365/b_1.scala b/tests/pending/pos/t4365/b_1.scala
deleted file mode 100644
index e1423813f..000000000
--- a/tests/pending/pos/t4365/b_1.scala
+++ /dev/null
@@ -1,24 +0,0 @@
-import scala.collection._
-
-trait GenSeqView0[+A, +Coll]
-
-trait GenSeqViewLike[+A,
- +Coll,
- +This <: GenSeqView0[A, Coll] with GenSeqViewLike[A, Coll, Nothing]]
-extends GenSeq[A] {
-self =>
-
- trait Transformed[+B] {
- def length: Int = 0
- def apply(idx: Int): B = error("")
- }
-
- trait Reversed extends Transformed[A] {
- def iterator: Iterator[A] = createReversedIterator
-
- private def createReversedIterator: Iterator[A] = {
- self.foreach(_ => ())
- null
- }
- }
-}