summaryrefslogtreecommitdiff
path: root/test/files/pos/t4717.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t4717.scala')
-rw-r--r--test/files/pos/t4717.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/pos/t4717.scala b/test/files/pos/t4717.scala
index 4acfe489cc..ed35a8ad87 100644
--- a/test/files/pos/t4717.scala
+++ b/test/files/pos/t4717.scala
@@ -6,13 +6,13 @@
trait Bug1[@specialized(Boolean) A] extends TraversableOnce[A] {
-
+
def ++[B >: A](that: TraversableOnce[B]): Iterator[B] = new Iterator[B] {
lazy val it = that.toIterator
def hasNext = it.hasNext
def next = it.next
}
-
+
}