[project @ 1997-07-30 23:52:45 by sof]
[ghc-hetmet.git] / ghc / compiler / tests / deSugar / ds034.hs
diff --git a/ghc/compiler/tests/deSugar/ds034.hs b/ghc/compiler/tests/deSugar/ds034.hs
deleted file mode 100644 (file)
index d1f2786..0000000
+++ /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