summaryrefslogtreecommitdiff
path: root/testsuite/tests/dynlibs/T18072.hs
blob: 39a174f2aef6a6ca58b5b1743bfe567366cef4ef (plain)
1
2
3
4
5
6
7
8
9
10
{-# LANGUAGE ForeignFunctionInterface #-}

module T18072 where

import Foreign.C

foo :: IO CInt
foo = return 3

foreign export ccall foo :: IO CInt