[project @ 1997-07-31 00:05:10 by sof]
[ghc-hetmet.git] / ghc / compiler / tests / typecheck / should_fail / tcfail038.hs
diff --git a/ghc/compiler/tests/typecheck/should_fail/tcfail038.hs b/ghc/compiler/tests/typecheck/should_fail/tcfail038.hs
deleted file mode 100644 (file)
index 7d03529..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---!!! duplicate class-method declarations
-
-module M where
-
-data NUM = ONE | TWO
-instance Eq NUM where
-       a == b = True
-       a /= b = False
-       a == b = False
-       a /= b = True
-