[project @ 1996-01-08 20:28:12 by partain]
[ghc-hetmet.git] / ghc / compiler / tests / typecheck / should_succeed / tc046.hs
1 module H where
2
3 class C a where
4  op1 :: a -> a
5
6 class (C a) => B a where
7  op2 :: a -> a -> a
8
9 {- Failed hard in new tc with "No match in theta_class" -}