[project @ 1998-03-05 20:34:11 by sof]
[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