summaryrefslogtreecommitdiff
path: root/testsuite/tests/ffi/should_compile/cc009.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ffi/should_compile/cc009.hs')
-rw-r--r--testsuite/tests/ffi/should_compile/cc009.hs8
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/tests/ffi/should_compile/cc009.hs b/testsuite/tests/ffi/should_compile/cc009.hs
new file mode 100644
index 0000000000..3ece3a9a24
--- /dev/null
+++ b/testsuite/tests/ffi/should_compile/cc009.hs
@@ -0,0 +1,8 @@
+-- !!! cc009 -- foreign label returning newtype of Addr
+module ShouldCompile where
+
+import Foreign
+type Addr = Ptr ()
+newtype NPtr a = NPtr Addr
+
+foreign import ccall "&" foo :: NPtr Int