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
Just doing a cabal install in a freshly cloned categories working copy (i.e. master branch). My GHC is also built today (v7.9.20140826).
I get:
[ 6 of 11] Compiling Control.Bifunctor ( src/Control/Bifunctor.hs, dist/build/Control/Bifunctor.o )
src/Control/Bifunctor.hs:38:30:
The first argument of ?Bifunctor?
should have kind ?x1 -> y1 -> z1?,
but ?p? has kind ?x2 -> y2 -> z2?
In the type ?Bifunctor p r s t => r a b -> t (p a c) (p b c)?
In the class declaration for ?PFunctor?
The text was updated successfully, but these errors were encountered:
src/Control/Bifunctor.hs:38:30:
The first argument of ‘Bifunctor’
should have kind ‘x1 -> y1 -> z1’,
but ‘p’ has kind ‘x2 -> y2 -> z2’
In the type ‘Bifunctor p r s t => r a b -> t (p a c) (p b c)’
In the class declaration for ‘PFunctor’
And this is the class-declaration referenced:
class (Categoryr, Categoryt) =>PFunctor (p::x->y->z) (r::x->x->*) (t::z->z->*) |pr->t, pt->rwherefirst::rab->t (pac) (pbc)
default first ::Bifunctorprst=>rab->t (pac) (pbc) -- THIS IS LINE 38
first f = bimap f id
Just doing a
cabal install
in a freshly clonedcategories
working copy (i.e.master
branch). My GHC is also built today (v7.9.20140826).I get:
The text was updated successfully, but these errors were encountered: