[project @ 2001-01-17 15:11:04 by simonmar]
[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