summaryrefslogtreecommitdiff
path: root/testsuite/tests/th/TH_repPrimOutput2.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/th/TH_repPrimOutput2.hs')
-rw-r--r--testsuite/tests/th/TH_repPrimOutput2.hs23
1 files changed, 23 insertions, 0 deletions
diff --git a/testsuite/tests/th/TH_repPrimOutput2.hs b/testsuite/tests/th/TH_repPrimOutput2.hs
new file mode 100644
index 0000000000..a7282064db
--- /dev/null
+++ b/testsuite/tests/th/TH_repPrimOutput2.hs
@@ -0,0 +1,23 @@
+{-# LANGUAGE MagicHash, UnboxedTuples #-}
+-- test the representation of unboxed literals
+
+module Main
+where
+
+import GHC.Exts
+import GHC.Float
+import Language.Haskell.TH
+import Text.PrettyPrint
+import System.IO
+
+main :: IO ()
+main = do putStrLn $ show $ $( do e <- [| 20# |]
+ [| I# $(return e) |] )
+ putStrLn $ show $ $( do e <- [| 32## |]
+ [| W# $(return e) |] )
+ putStrLn $ show $ $( do e <- [| 12.3# |]
+ [| F# $(return e) |] )
+ putStrLn $ show $ $( do e <- [| 24.6## |]
+ [| D# $(return e) |] )
+
+