diff options
Diffstat (limited to 'testsuite/tests/ffi/should_compile/cc008.hs')
-rw-r--r-- | testsuite/tests/ffi/should_compile/cc008.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/tests/ffi/should_compile/cc008.hs b/testsuite/tests/ffi/should_compile/cc008.hs new file mode 100644 index 0000000000..2dd0bc99eb --- /dev/null +++ b/testsuite/tests/ffi/should_compile/cc008.hs @@ -0,0 +1,8 @@ +-- !!! cc008 -- foreign export dynamic returning newtype of Addr +module ShouldCompile where + +import Foreign +type Addr = Ptr () +newtype NPtr a = NPtr Addr + +foreign import ccall "wrapper" mkFoo :: IO () -> IO (NPtr Int) |