diff options
Diffstat (limited to 'testsuite/tests/primops/should_run/ShowPrim.hs')
-rw-r--r-- | testsuite/tests/primops/should_run/ShowPrim.hs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/testsuite/tests/primops/should_run/ShowPrim.hs b/testsuite/tests/primops/should_run/ShowPrim.hs deleted file mode 100644 index 5670032f4a..0000000000 --- a/testsuite/tests/primops/should_run/ShowPrim.hs +++ /dev/null @@ -1,14 +0,0 @@ -{-# LANGUAGE MagicHash #-} - -module Main where - -import GHC.Exts - -data Test = Test Int8# Word8# - deriving (Show) - -test1 :: Test -test1 = Test (narrowInt8# 1#) (narrowWord8# 2##) - -main :: IO () -main = print test1 |