X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fcompiler%2Ftests%2Fderiving%2Fdrv002.hs;fp=ghc%2Fcompiler%2Ftests%2Fderiving%2Fdrv002.hs;h=0000000000000000000000000000000000000000;hb=1369cd5bc5f167b3b635fba26db0357a1c2a00de;hp=15eb2d9ecc01f3e305c61383e2108d1a4c385534;hpb=fd5ab9dcc7a0194d371ba41a780c3d73b0abc80f;p=ghc-hetmet.git diff --git a/ghc/compiler/tests/deriving/drv002.hs b/ghc/compiler/tests/deriving/drv002.hs deleted file mode 100644 index 15eb2d9..0000000 --- a/ghc/compiler/tests/deriving/drv002.hs +++ /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"