[project @ 1998-12-02 13:17:09 by simonm]
[ghc-hetmet.git] / ghc / interpreter / test / static / s051.hs
1 --!!! Type sigs in instance decl
2 module M where
3 data T = T Int
4 instance Eq T where
5   (==) :: T -> T -> Bool
6   T x == T y = x == y
7