X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fcompiler%2Ftests%2FdeSugar%2Fds034.hs;fp=ghc%2Fcompiler%2Ftests%2FdeSugar%2Fds034.hs;h=0000000000000000000000000000000000000000;hb=29b46083beaa048af4b4a68e8f96909ac98a639f;hp=d1f278608b84af3a1a8e816792f279457a5a00d8;hpb=3436a37c72644f82471a7d8c684d67438b86cc3a;p=ghc-hetmet.git diff --git a/ghc/compiler/tests/deSugar/ds034.hs b/ghc/compiler/tests/deSugar/ds034.hs deleted file mode 100644 index d1f2786..0000000 --- a/ghc/compiler/tests/deSugar/ds034.hs +++ /dev/null @@ -1,11 +0,0 @@ ---!!! mutually-recursive methods in an instance declaration --- -module Test where - -class Foo a where - op1 :: a -> a - op2 :: a -> a - -instance Foo Int where - op1 x = op2 x - op2 y = op1 y