blob: 1aeadd5932117ff8d7c86245d97096cd454f4665 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{-# LANGUAGE Unsafe #-}
{-# LANGUAGE NoImplicitPrelude #-}
module GHC.IO where
import GHC.Types
import GHC.Integer () -- See Note [Depend on GHC.Integer] in GHC.Base
import {-# SOURCE #-} GHC.Exception.Type (SomeException)
mplusIO :: IO a -> IO a -> IO a
mkUserError :: [Char] -> SomeException
|