[project @ 2000-09-06 13:30:48 by simonmar]
[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