packages feed

fourmolu-0.16.0.0: data/examples/declaration/warning/warning-multiline-four-out.hs

{-# WARNING
    test
    , foo
    [ "These are bad functions"
    , "Really bad!"
    ]
    #-}
test :: IO ()
test = pure ()

instance
    {-# WARNING "Don't use" #-}
    Show G1 where
    show = "G1"

deriving instance
        {-# WARNING "to be removed" #-}
    Eq G2