Skip to content

Commit

Permalink
fix functors
Browse files Browse the repository at this point in the history
  • Loading branch information
isovector committed Mar 13, 2020
1 parent 48923d1 commit 151d62d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Test/QuickCheck/Checkers.hs
Original file line number Diff line number Diff line change
Expand Up @@ -288,8 +288,8 @@ instance (EqProp a, EqProp b) => EqProp (Either a b)
#if __GLASGOW_HASKELL__ >= 800
instance EqProp (f (g a)) => EqProp (Compose f g a)
instance (EqProp (f a), EqProp (g a)) => EqProp (F.Sum f g a)
#endif
instance (EqProp (f a), EqProp (g a)) => EqProp (F.Product f g a)
#endif
instance EqProp a => EqProp (Identity a)
instance EqProp a => EqProp (Const a b)
instance EqProp (Proxy a)
Expand Down

0 comments on commit 151d62d

Please sign in to comment.