packages feed

ormolu-0.0.1.0: data/examples/declaration/instance/contexts.hs

instance Eq a=>Eq [a] where (==) _ _ = False

instance (
    Ord a,
    Ord b
  ) => Ord (a,b) where
  compare _ _ = GT

instance (Show a, Show b) =>
  Show (
    a,
    b
  ) where
  showsPrec _ _ = showString ""