aihc-parser-1.0.0.2: test/Test/Fixtures/oracle/pragma/MinimalPragma.hs
{- ORACLE_TEST pass -}
module MinimalPragma where
class PartialEq a where
peq :: a -> a -> Bool
pne :: a -> a -> Bool
peq x y = not (pne x y)
pne x y = not (peq x y)
{-# MINIMAL peq | pne #-}