[project @ 1996-01-08 20:28:12 by partain]
[ghc-hetmet.git] / ghc / compiler / tests / typecheck / should_fail / tcfail027.hs
1 --!!! tests for CycleErr in classes
2
3 class (B a) => A a where
4  op1 :: a -> a
5
6 class (A a) => B a where
7  op2 :: a -> a -> a