Why am I getting the following error: could not find implicit value for parameter C: scalaz.Catchable[F2]
when executing P(1,2,3).run
?
[scalaz-stream-sandbox]> console
[info] Starting scala interpreter...
[info]
import scalaz.stream._
import scala.concurrent.duration._
P: scalaz.stream.Process.type = scalaz.stream.Process$@7653f01e
Welcome to Scala version 2.11.0-RC3 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0).
Type in expressions to have them evaluated.
Type :help for more information.
scala> P(1,2,3).run
<console>:15: error: could not find implicit value for parameter C: scalaz.Catchable[F2]
P(1,2,3).run
^
The scalaz-stream-sandbox project is available at GitHub. Execute sbt console
and then P(1,2,3).run
to face the issue.