[project @ 2001-08-22 11:45:06 by sewardj]
[ghc-hetmet.git] / ghc / tests / ccall / should_compile / cc002.hs
1 -- !!! cc002 -- ccall with ambiguous result (should be defaulted to ())
2 module ShouldCompile where
3
4 a :: IO ()
5 a = do
6  _ccall_ a
7  return ()
8
9