b80430ba26e7279ee5836342c625fa135b05119e
[ghc-hetmet.git] / ghc / 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