You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<pastie>:18: error: not found: type A
def widen[A, B >: A](fa: F[A]): F[B] = fa.asInstanceOf[F[B]]
^
<pastie>:15: error: type arguments [C,B] do not conform to method widen's type parameter bounds [A,B >: A]
@typeclass trait Functor[F[_]] { self =>
^
Hi,
If I try and use Simulcrum on the following:
I get a compiler error:
If I rewrite
widen
not to use a type bound:then I don't get any compilation errors.
Am I using Simulcrum incorrectly or is this a bug?
The text was updated successfully, but these errors were encountered: