c9bb8d53a8864d5f4e75d1eec08fc999d3110f8d
[ghc-hetmet.git] / ghc / compiler / tests / typecheck / should_succeed / tc077.hs
1 --!!! make sure context of EQ is minimised in interface file.
2 --
3 module M where
4
5 data NUM = ONE | TWO
6 class (Num a) => ORD a
7
8 class (ORD a, Show a) => EQ a where
9         (===) :: a -> a -> Bool