packages feed

fourmolu-0.0.6.0: data/examples/declaration/instance/instance-sigs-out.hs

{-# LANGUAGE InstanceSigs #-}

instance Eq Int where
  (==) :: Int -> Int -> Bool
  (==) _ _ = False

instance Ord Int where
  compare ::
    Int ->
    Int ->
    Ordering
  compare
    _
    _ =
      GT