diff options
author | Ian Lynagh <igloo@earth.li> | 2011-09-06 16:48:02 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-09-06 16:48:02 +0100 |
commit | 877dc99e6e141101bf6704d5c9841aa2abfa62c9 (patch) | |
tree | f091b71fdab371006f89c67b0a9403aaeb91e909 /testsuite/tests/rts/T4059.hs | |
parent | 89f34a495814e799c76dc456cf7fe7212081014d (diff) | |
download | haskell-877dc99e6e141101bf6704d5c9841aa2abfa62c9.tar.gz |
Fix some more written-but-not-cleaned files
Diffstat (limited to 'testsuite/tests/rts/T4059.hs')
-rw-r--r-- | testsuite/tests/rts/T4059.hs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/testsuite/tests/rts/T4059.hs b/testsuite/tests/rts/T4059.hs new file mode 100644 index 0000000000..5af5bbc4aa --- /dev/null +++ b/testsuite/tests/rts/T4059.hs @@ -0,0 +1,22 @@ + +{-# LANGUAGE ForeignFunctionInterface #-} + +import Foreign hiding ( unsafePerformIO ) +import Foreign.C +import System.IO.Unsafe + +d f x = unsafePerformIO $ do + g <- mkfun f + r <- deriv g x 1 + return r + +main = do + print $ d (\x -> x * 2) 3 + print $ d (\x -> x * d (\y -> x + y) 5) 7 + + +foreign import ccall safe "deriv" + deriv :: FunPtr (CDouble -> CDouble) -> CDouble -> CDouble -> IO CDouble + +foreign import ccall safe "wrapper" + mkfun :: (CDouble -> CDouble) -> IO (FunPtr (CDouble -> CDouble)) |