[project @ 1997-07-31 02:33:07 by sof]
[ghc-hetmet.git] / ghc / compiler / tests / deriving / drv002.hs
diff --git a/ghc/compiler/tests/deriving/drv002.hs b/ghc/compiler/tests/deriving/drv002.hs
deleted file mode 100644 (file)
index 15eb2d9..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-module ShouldSucceed where
-
-data Z a b
-  = C1 (T a)
-  | C2 (Z [a] [b])
-  deriving (Show, Read)
-
-data T a
-  = E1
-
-instance Eq a => Show (T a) where
-    showsPrec = error "show"
-instance Eq a => Read (T a) where
-    readsPrec = error "read"