summaryrefslogtreecommitdiff
path: root/test/files/pos/virtpatmat_castbinder.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/virtpatmat_castbinder.scala')
-rw-r--r--test/files/pos/virtpatmat_castbinder.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/virtpatmat_castbinder.scala b/test/files/pos/virtpatmat_castbinder.scala
index 53e937e866..be269638ce 100644
--- a/test/files/pos/virtpatmat_castbinder.scala
+++ b/test/files/pos/virtpatmat_castbinder.scala
@@ -6,7 +6,7 @@ trait IntMapIterator[V, T] {
def valueOf(tip: Tip[V]): T
def pop: IntMap[V]
- def next: T =
+ def next: T =
pop match {
case Bin(t@Tip(_)) => {
valueOf(t)