X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=GHC%2FErr.lhs-boot;h=932f699de97c66cfdd04e20349ccbf7155c4911c;hb=be2750a0a11b919fb03cc070074e430f88bdfa90;hp=0b18d3095d50edf11cc94752ac324d975513bdaf;hpb=10de2c656f74562b662c22928be85e1b3ccda796;p=ghc-base.git diff --git a/GHC/Err.lhs-boot b/GHC/Err.lhs-boot index 0b18d30..932f699 100644 --- a/GHC/Err.lhs-boot +++ b/GHC/Err.lhs-boot @@ -1,10 +1,11 @@ \begin{code} -{-# OPTIONS_GHC -XNoImplicitPrelude #-} +{-# LANGUAGE NoImplicitPrelude #-} + --------------------------------------------------------------------------- -- Ghc.Err.hs-boot --------------------------------------------------------------------------- -module GHC.Err( error, divZeroError, overflowError ) where +module GHC.Err( error ) where -- The type signature for 'error' is a gross hack. -- First, we can't give an accurate type for error, because it mentions @@ -17,10 +18,4 @@ module GHC.Err( error, divZeroError, overflowError ) where -- to mention 'error' so that it gets exported from this .hi-boot -- file. error :: a - --- divide by zero is needed quite early -divZeroError :: a - --- overflow is needed quite early -overflowError :: a \end{code}