Add NoImplicitPrelude to the extensions used when building with GHC
[ghc-base.git] / Prelude.hs-boot
1 {-# OPTIONS_GHC -XNoImplicitPrelude #-}
2
3 module Prelude where
4
5 import GHC.IOBase
6
7 catch :: IO a -> (IOError -> IO a) -> IO a