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.scala13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/pending/pos/t5119.scala b/tests/pending/pos/t5119.scala
deleted file mode 100644
index 39f626e53..000000000
--- a/tests/pending/pos/t5119.scala
+++ /dev/null
@@ -1,13 +0,0 @@
-import collection.mutable
-
-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))
- }
- }
- }
- }
-}