From 42851ed2675015d42bb341b82a09bd0bef4a8ce4 Mon Sep 17 00:00:00 2001 From: Samuel Gruetter Date: Tue, 16 Dec 2014 16:38:09 +0100 Subject: move failing tests from tests/untried/pos to tests/pending/pos --- tests/pending/pos/t5119.scala | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tests/pending/pos/t5119.scala (limited to 'tests/pending/pos/t5119.scala') diff --git a/tests/pending/pos/t5119.scala b/tests/pending/pos/t5119.scala new file mode 100644 index 000000000..4a67244e5 --- /dev/null +++ b/tests/pending/pos/t5119.scala @@ -0,0 +1,13 @@ +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)) + } + } + } + } +} -- cgit v1.2.3