[project @ 2001-01-17 15:11:04 by simonmar]
[ghc-hetmet.git] / ghc / interpreter / test / static / s053.hs
1 --!!! Instance context can't satisfy class-hierarchy constraint
2 module M where
3 class Foo a
4 class Foo a => Bar a
5 instance Num a => Foo [a]
6 instance (Eq a, Enum a) => Bar [a]
7