[project @ 1998-12-02 13:17:09 by simonm]
[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