summaryrefslogtreecommitdiff
path: root/testsuite/tests/th/T3319.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/th/T3319.hs')
-rw-r--r--testsuite/tests/th/T3319.hs11
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/tests/th/T3319.hs b/testsuite/tests/th/T3319.hs
new file mode 100644
index 0000000000..afe7f01c10
--- /dev/null
+++ b/testsuite/tests/th/T3319.hs
@@ -0,0 +1,11 @@
+{-# LANGUAGE TemplateHaskell,ForeignFunctionInterface #-}
+
+module T3319 where
+
+import Foreign.Ptr
+import Language.Haskell.TH
+
+$(return [ForeignD (ImportF CCall Unsafe "&" (mkName "foo") (AppT (ConT ''Ptr) (ConT ''())))])
+
+-- Should generate the same as this:
+foreign import ccall unsafe "&" foo1 :: Ptr ()