[project @ 2001-08-22 12:24:41 by simonmar]
[ghc-hetmet.git] / ghc / tests / typecheck / should_compile / tc061.hs
diff --git a/ghc/tests/typecheck/should_compile/tc061.hs b/ghc/tests/typecheck/should_compile/tc061.hs
deleted file mode 100644 (file)
index 25a8b65..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-module ShouldSucceed where
-
-class Eq1 a where
- deq :: a -> a -> Bool
-
-instance (Eq1 a) => Eq1 [a] where
- deq (a:as) (b:bs) = deq a b
-
-instance Eq1 Int where
- deq x y = True
-