d3ed1f15db94d4288fd549a8bd915716ca48b8c1
[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