aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t5119.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t5119.scala')
-rw-r--r--tests/pending/pos/t5119.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pending/pos/t5119.scala b/tests/pending/pos/t5119.scala
index 4a67244e5..39f626e53 100644
--- a/tests/pending/pos/t5119.scala
+++ b/tests/pending/pos/t5119.scala
@@ -4,8 +4,8 @@ object Test {
class IMap0[K[_], V[_]](backing: Map[K[_], V[_]]) {
def mapSeparate[VL[_], VR[_]](f: V[_] => ({type l[T] = Either[VL[T], VR[T]]})#l[_] ) = {
backing.view.map { case (k,v) => f(v) match {
- case Left(l) => Left((k, l))
- case Right(r) => Right((k, r))
+ case Left(l) => Left((k, l))
+ case Right(r) => Right((k, r))
}
}
}