ghc-exactprint-0.5.3.1: tests/examples/ghc80/WCompatWarningsOn.hs
-- Test purpose:
-- Ensure that -Wcompat switches on the right warnings
{-# OPTIONS_GHC -Wcompat #-}
-- {-# OPTIONS_GHC -Wno-compat #-}
module WCompatWarningsOn where
import qualified Data.Semigroup as Semi
monadFail :: Monad m => m a
monadFail = do
Just _ <- undefined
undefined
(<>) = undefined -- Semigroup warnings
-- -fwarn-noncanonical-monoid-instances
newtype S = S Int
instance Semi.Semigroup S where
(<>) = mappend
instance Semi.Monoid S where
S a `mappend` S b = S (a+b)
mempty = S 0