Reshuffle GHC.Conc/GHC.TopHandler a bit to remove a recursive import
[ghc-base.git] / GHC / TopHandler.lhs-boot
1 \begin{code}
2 {-# OPTIONS_GHC -XNoImplicitPrelude #-}
3 module GHC.TopHandler ( reportError, reportStackOverflow ) where
4
5 import GHC.IOBase (IO)
6 import Control.Exception (SomeException)
7
8 reportError :: SomeException -> IO a
9 reportStackOverflow :: IO a
10 \end{code}