Closed jcpetruzza closed 6 years ago
The following currently doesn't work:
data B b (f :: * -> *) = B (b f) deriving (Generic) instance FunctorB b => FunctorB (B b)
Of course, one can write the instances manually...
instance FunctorB b => FunctorB (B b) where bmap f (B bf) = B (bmap f bf)
FunctorB seems to be working now on master for this case, but not ConstraintsB
FunctorB
master
ConstraintsB
Fixed in v1.0.0.0
The following currently doesn't work:
Of course, one can write the instances manually...