summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/deriving/should_run/drvrun018.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghc-regress/deriving/should_run/drvrun018.hs')
-rw-r--r--testsuite/tests/ghc-regress/deriving/should_run/drvrun018.hs9
1 files changed, 0 insertions, 9 deletions
diff --git a/testsuite/tests/ghc-regress/deriving/should_run/drvrun018.hs b/testsuite/tests/ghc-regress/deriving/should_run/drvrun018.hs
deleted file mode 100644
index a0b9f24362..0000000000
--- a/testsuite/tests/ghc-regress/deriving/should_run/drvrun018.hs
+++ /dev/null
@@ -1,9 +0,0 @@
-
--- Test Show on unboxed types
-
-module Main where
-
-data Foo = Int `MkFoo` Int deriving( Read, Show )
-
-main = do { print (MkFoo 4 5)
- ; print (read "3 `MkFoo` 5" :: Foo) }