Make the alternative layout rule cope with file pragmas
[ghc-hetmet.git] / compiler / parser / ParserCoreUtils.hs
index 124294b..2c88aa7 100644 (file)
@@ -1,6 +1,6 @@
 module ParserCoreUtils where
 
-import IO 
+import System.IO
 
 data ParseResult a = OkP a | FailP String
 type P a = String -> Int -> ParseResult a