[project @ 1996-01-08 20:28:12 by partain]
[ghc-hetmet.git] / ghc / compiler / tests / typecheck / should_fail / tcfail023.hs
1
2 data B = C
3
4 class A a where
5  op :: a -> a
6
7 instance A B where
8  op C = True
9
10 instance A B where
11  op C = True
12
13