summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/ffi/should_run/ffi018_ghci.hs
blob: c529ea87e6ae2b23092be9dd3100e569b00e38ec (plain)
1
2
3
4
5
6
7
8
9
10

import Data.Int

main :: IO ()
main = do x <- f
          print (x == 0x123456789ABCDEF0)

foreign import ccall "ffi018.h f"
    f :: IO Int64