blob: 389afe13b4bc1c495f643e3511e5cc5c626e7ef2 (
plain)
1
2
3
4
5
6
7
8
9
|
\begin{code}
{-# OPTIONS_GHC -XNoImplicitPrelude #-}
module GHC.TopHandler ( reportError, reportStackOverflow ) where
import GHC.IOBase ( IO, Exception )
reportError :: Exception -> IO a
reportStackOverflow :: IO a
\end{code}
|