Remove unused imports from base
[ghc-base.git] / GHC / MVar.hs
index 98ecd45..67fa7c6 100644 (file)
@@ -29,7 +29,7 @@ module GHC.MVar (
   ) where
 
 import GHC.Base
-import GHC.IO
+import GHC.IO()   -- instance Monad IO
 import Data.Maybe
 
 data MVar a = MVar (MVar# RealWorld a)