[project @ 1997-01-06 21:08:42 by simonpj]
[ghc-hetmet.git] / ghc / lib / required / Monad.lhs
index 6a7919f..dfc82e5 100644 (file)
@@ -5,6 +5,8 @@
 \section[Monad]{Module @Monad@}
 
 \begin{code}
+{-# OPTIONS -fno-implicit-prelude #-}
+
 module Monad (
     Functor(..), Monad(..), MonadZero(..), MonadPlus(..),
 
@@ -16,7 +18,6 @@ module Monad (
     liftM, liftM2, liftM3, liftM4, liftM5
   ) where
 
-import Prelude ()
 import PrelList
 import PrelTup
 import PrelBase