[project @ 2001-08-22 12:24:41 by simonmar]
[ghc-hetmet.git] / ghc / tests / typecheck / should_fail / tcfail023.hs
diff --git a/ghc/tests/typecheck/should_fail/tcfail023.hs b/ghc/tests/typecheck/should_fail/tcfail023.hs
deleted file mode 100644 (file)
index ea8fe8b..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-module ShouldFail where
-
--- !!! Duplicate instances
-
-data B = C
-
-class A a where
- op :: a -> a
-
-instance A B where
- op C = True
-
-instance A B where
- op C = True
-
-