aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t404.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t404.scala')
-rw-r--r--tests/pending/pos/t404.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/pending/pos/t404.scala b/tests/pending/pos/t404.scala
deleted file mode 100644
index 8f5e8bef5..000000000
--- a/tests/pending/pos/t404.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-trait AbsIterator {
- type T
- def next: T
-}
-class StringIterator extends AbsIterator {
- type T = Char
- def next = 'a'
-}
-trait SyncIterator extends AbsIterator {
- abstract override def next: T = super.next
-}
-class I extends StringIterator with SyncIterator