packages feed

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

{-# LANGUAGE InstanceSigs #-}

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

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