[project @ 2001-08-22 11:45:06 by sewardj]
[ghc-hetmet.git] / ghc / tests / typecheck / should_fail / tcfail073.hs
1 -- what error do you get if you redefined Prelude instances?
2
3 module ShouldFail where
4
5 f x@(a,b) y@(c,d) = x == y
6
7 instance Eq (a,b) where
8     (m,n) == (o,p) = m == o