\begin{code} {-# OPTIONS_GHC -XNoImplicitPrelude #-} module GHC.TopHandler ( reportError, reportStackOverflow ) where import GHC.IOBase (IO) import Control.OldException (Exception) reportError :: Exception -> IO a reportStackOverflow :: IO a \end{code}